mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
11 lines
No EOL
260 B
JavaScript
11 lines
No EOL
260 B
JavaScript
// DIE's signature file
|
|
|
|
init("language", "JavaScript");
|
|
|
|
function detect(bShowType, bShowVersion, bShowOptions) {
|
|
if (NPM.isArchiveRecordPresentExp("(.*?).js")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result(bShowType, bShowVersion, bShowOptions);
|
|
} |