Skip to content

Commit

Permalink
Fix deepStrictEqual "polyfill"
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed May 1, 2019
1 parent 8a7cde3 commit 36d50aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/node/types.js
Expand Up @@ -21,7 +21,7 @@ var objectEntries = require('object.entries');

// "polyfill" deepStrictEqual on Node 0.12 and below
if (!assert.deepStrictEqual) {
assert.deepStrictEqual = assert.strictEqual;
assert.deepStrictEqual = assert.deepEqual;
}

function uncurryThis(f) {
Expand Down

0 comments on commit 36d50aa

Please sign in to comment.