Skip to content

Commit 3b9bc7f

Browse files
committed
1 parent 71245a3 commit 3b9bc7f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

chai.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var used = [];
1414
* Chai version
1515
*/
1616

17-
exports.version = '4.3.1';
17+
exports.version = '4.3.2';
1818

1919
/*!
2020
* Assertion Error
@@ -3549,7 +3549,7 @@ module.exports = function (chai, _) {
35493549
} else {
35503550
if (isDeep) {
35513551
this.assert(
3552-
list.some(possibility => _.eql(expected, possibility))
3552+
list.some(function(possibility) { return _.eql(expected, possibility) })
35533553
, 'expected #{this} to deeply equal one of #{exp}'
35543554
, 'expected #{this} to deeply equal one of #{exp}'
35553555
, list

lib/chai.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var used = [];
1010
* Chai version
1111
*/
1212

13-
exports.version = '4.3.1';
13+
exports.version = '4.3.2';
1414

1515
/*!
1616
* Assertion Error

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Veselin Todorov <[email protected]>",
1818
"John Firebaugh <[email protected]>"
1919
],
20-
"version": "4.3.1",
20+
"version": "4.3.2",
2121
"repository": {
2222
"type": "git",
2323
"url": "https://github.com/chaijs/chai"

0 commit comments

Comments
 (0)