aboutsummaryrefslogtreecommitdiff
path: root/src/js/out/modules/node/assert.strict.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/out/modules/node/assert.strict.js')
-rw-r--r--src/js/out/modules/node/assert.strict.js66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/js/out/modules/node/assert.strict.js b/src/js/out/modules/node/assert.strict.js
new file mode 100644
index 000000000..02f3ef3e9
--- /dev/null
+++ b/src/js/out/modules/node/assert.strict.js
@@ -0,0 +1,66 @@
+var {strict: strictBase } = import.meta.require("node:assert");
+var {
+ fail,
+ AssertionError,
+ ok,
+ equal,
+ notEqual,
+ deepEqual,
+ notDeepEqual,
+ deepStrictEqual,
+ notDeepStrictEqual,
+ strictEqual,
+ notStrictEqual,
+ throws,
+ rejects,
+ doesNotThrow,
+ doesNotReject,
+ ifError,
+ match,
+ doesNotMatch,
+ CallTracker
+} = strictBase, defaultObject = {
+ fail,
+ AssertionError,
+ ok,
+ equal,
+ notEqual,
+ deepEqual,
+ notDeepEqual,
+ deepStrictEqual,
+ notDeepStrictEqual,
+ strictEqual,
+ notStrictEqual,
+ throws,
+ rejects,
+ doesNotThrow,
+ doesNotReject,
+ ifError,
+ match,
+ doesNotMatch,
+ CallTracker,
+ [Symbol.for("CommonJS")]: 0
+};
+export {
+ throws,
+ strictEqual,
+ strictBase as strict,
+ rejects,
+ ok,
+ notStrictEqual,
+ notEqual,
+ notDeepStrictEqual,
+ notDeepEqual,
+ match,
+ ifError,
+ fail,
+ equal,
+ doesNotThrow,
+ doesNotReject,
+ doesNotMatch,
+ defaultObject as default,
+ deepStrictEqual,
+ deepEqual,
+ CallTracker,
+ AssertionError
+};