aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/assert_strict.exports.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/bun.js/assert_strict.exports.js')
-rw-r--r--src/bun.js/assert_strict.exports.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/bun.js/assert_strict.exports.js b/src/bun.js/assert_strict.exports.js
deleted file mode 100644
index 619986113..000000000
--- a/src/bun.js/assert_strict.exports.js
+++ /dev/null
@@ -1,48 +0,0 @@
-var { strict: strictBase } = import.meta.require("node:assert");
-
-export var {
- fail,
- AssertionError,
- ok,
- equal,
- notEqual,
- deepEqual,
- notDeepEqual,
- deepStrictEqual,
- notDeepStrictEqual,
- strictEqual,
- notStrictEqual,
- throws,
- rejects,
- doesNotThrow,
- doesNotReject,
- ifError,
- match,
- doesNotMatch,
- CallTracker,
-} = strictBase;
-
-const 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 { defaultObject as default, strictBase as strict };