Detect-It-Easy/db/PE/Lua_Runtime.4.sg

18 lines
No EOL
326 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
meta("library", "Lua Runtime");
function detect() {
if (PE.isLibraryPresentExp(/^lua5*/i)) {
bDetected = true;
}
sLang = "Lua";
return result();
}