(a, b)
| 9 | const { test } = require('node:test'); |
| 10 | |
| 11 | function utilIsDeepStrict(a, b) { |
| 12 | assert.strictEqual(util.isDeepStrictEqual(a, b), true); |
| 13 | assert.strictEqual(util.isDeepStrictEqual(b, a), true); |
| 14 | } |
| 15 | |
| 16 | function notUtilIsDeepStrict(a, b) { |
| 17 | assert.strictEqual(util.isDeepStrictEqual(a, b), false); |
no outgoing calls
no test coverage detected
searching dependent graphs…