chai 4.4.0 → 4.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/chai.js CHANGED
@@ -164,7 +164,7 @@ module.exports = function (_chai, util) {
164
164
  flag(this, 'lockSsfi', lockSsfi);
165
165
  flag(this, 'object', obj);
166
166
  flag(this, 'message', msg);
167
- flag(this, 'eql', config.deepEqual ?? util.eql);
167
+ flag(this, 'eql', config.deepEqual || util.eql);
168
168
 
169
169
  return util.proxify(this);
170
170
  }
@@ -66,7 +66,7 @@ module.exports = function (_chai, util) {
66
66
  flag(this, 'lockSsfi', lockSsfi);
67
67
  flag(this, 'object', obj);
68
68
  flag(this, 'message', msg);
69
- flag(this, 'eql', config.deepEqual ?? util.eql);
69
+ flag(this, 'eql', config.deepEqual || util.eql);
70
70
 
71
71
  return util.proxify(this);
72
72
  }
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "Veselin Todorov <hi@vesln.com>",
18
18
  "John Firebaugh <john.firebaugh@gmail.com>"
19
19
  ],
20
- "version": "4.4.0",
20
+ "version": "4.4.1",
21
21
  "repository": {
22
22
  "type": "git",
23
23
  "url": "https://github.com/chaijs/chai"