Detect-It-Easy/db/PE/Lua_Runtime.4.sg
2025-04-14 00:31:53 +03:00

18 lines
No EOL
339 B
JavaScript

// Detect It Easy: detection rule file
// Author: DosX
// E-Mail: collab@kay-software.ru
// GitHub: https://github.com/DosX-dev
// Telegram: @DosX_dev
init("library", "Lua Runtime");
function detect() {
if (PE.isLibraryPresentExp(/^lua5*/i)) {
bDetected = true;
}
_setLang("Lua", bDetected);
return result();
}