mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
9 lines
No EOL
186 B
JavaScript
9 lines
No EOL
186 B
JavaScript
// Detect It Easy: detection rule file format
|
|
|
|
init("language", "JavaScript");
|
|
|
|
function detect() {
|
|
if (NPM.isArchiveRecordPresentExp("(.*?).js")) {
|
|
bDetected = true;
|
|
}
|
|
} |