chai@4.3.2

This commit is contained in:
Keith Cirkel 2021-03-03 18:16:57 +00:00
parent 71245a3e33
commit 3b9bc7f56d
No known key found for this signature in database
GPG key ID: 16C9E3C1B8FBBA0C
4 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@ var used = [];
* Chai version
*/
exports.version = '4.3.1';
exports.version = '4.3.2';
/*!
* Assertion Error
@ -3549,7 +3549,7 @@ module.exports = function (chai, _) {
} else {
if (isDeep) {
this.assert(
list.some(possibility => _.eql(expected, possibility))
list.some(function(possibility) { return _.eql(expected, possibility) })
, 'expected #{this} to deeply equal one of #{exp}'
, 'expected #{this} to deeply equal one of #{exp}'
, list

View file

@ -10,7 +10,7 @@ var used = [];
* Chai version
*/
exports.version = '4.3.1';
exports.version = '4.3.2';
/*!
* Assertion Error

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "chai",
"version": "4.3.1",
"version": "4.3.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -17,7 +17,7 @@
"Veselin Todorov <hi@vesln.com>",
"John Firebaugh <john.firebaugh@gmail.com>"
],
"version": "4.3.1",
"version": "4.3.2",
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai"