1
0
镜像自地址 https://github.com/coolaj86/ajquery.js.git 已同步 2024-11-16 17:29:02 +00:00
ajquery.js/tests/commonjs.cjs
2024-08-29 18:10:41 -06:00

22 行
489 B
JavaScript

"use strict";
let AJQueryDefault = require("../");
let AJQueryExplicit = require("../ajquery.cjs");
if (!AJQueryDefault.$) {
throw new Error("did not export $ correctly");
}
if (!AJQueryDefault.$$) {
throw new Error("did not export $$ correctly");
}
if (AJQueryDefault.$ !== AJQueryExplicit.$) {
throw new Error("exported $s do not match");
}
if (AJQueryDefault.$$ !== AJQueryExplicit.$$) {
throw new Error("exported $$s do not match");
}
console.log(`\x1b[34mPASS\x1b[33m`);