Detect-It-Easy/db/NPM/JavaScript.5.sg
2024-11-01 19:05:05 +03:00

11 lines
No EOL
282 B
JavaScript

// Detect It Easy: detection rule file format
init("language", "JavaScript");
function detect(bShowType, bShowVersion, bShowOptions) {
if (NPM.isArchiveRecordPresentExp("(.*?).js")) {
bDetected = true;
}
return result(bShowType, bShowVersion, bShowOptions);
}