Socket
Socket
Sign inDemoInstall

@jest/expect-utils

Package Overview
Dependencies
Maintainers
6
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jest/expect-utils - npm Package Compare versions

Comparing version 28.1.1 to 28.1.3

9

build/jasmineUtils.js

@@ -10,2 +10,3 @@ 'use strict';

exports.isImmutableOrderedKeyed = isImmutableOrderedKeyed;
exports.isImmutableOrderedSet = isImmutableOrderedSet;
exports.isImmutableUnorderedKeyed = isImmutableUnorderedKeyed;

@@ -275,1 +276,9 @@ exports.isImmutableUnorderedSet = isImmutableUnorderedSet;

}
function isImmutableOrderedSet(maybeSet) {
return !!(
maybeSet &&
maybeSet[IS_SET_SENTINEL] &&
maybeSet[IS_ORDERED_SENTINEL]
);
}

3

build/utils.js

@@ -283,3 +283,4 @@ 'use strict';

!(0, _jasmineUtils.isImmutableList)(a) &&
!(0, _jasmineUtils.isImmutableOrderedKeyed)(a)
!(0, _jasmineUtils.isImmutableOrderedKeyed)(a) &&
!(0, _jasmineUtils.isImmutableOrderedSet)(a)
) {

@@ -286,0 +287,0 @@ const aEntries = Object.entries(a);

{
"name": "@jest/expect-utils",
"version": "28.1.1",
"version": "28.1.3",
"repository": {

@@ -24,3 +24,3 @@ "type": "git",

"immutable": "^4.0.0",
"jest-matcher-utils": "^28.1.1"
"jest-matcher-utils": "^28.1.3"
},

@@ -33,3 +33,3 @@ "engines": {

},
"gitHead": "eb954f8874960920ac50a8f976bb333fbb06ada9"
"gitHead": "2cce069800dab3fc8ca7c469b32d2e2b2f7e2bb1"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc