diff options
Diffstat (limited to 'src/js/out/modules_dev/node/assert.strict.js')
-rw-r--r-- | src/js/out/modules_dev/node/assert.strict.js | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/js/out/modules_dev/node/assert.strict.js b/src/js/out/modules_dev/node/assert.strict.js new file mode 100644 index 000000000..0bce7678d --- /dev/null +++ b/src/js/out/modules_dev/node/assert.strict.js @@ -0,0 +1,68 @@ +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 +}; + +//# debugId=24589A249F6A4E4D64756e2164756e21 |