New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@domql/utils

Package Overview
Dependencies
Maintainers
3
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domql/utils - npm Package Compare versions

Comparing version 2.3.90 to 2.3.91

4

array.js

@@ -23,1 +23,5 @@ 'use strict'

}
export const swapItemsInArray = (arr, i, j) => {
[arr[i], arr[j]] = [arr[j], arr[i]]
}

@@ -22,3 +22,4 @@ "use strict";

arrayContainsOtherArray: () => arrayContainsOtherArray,
removeFromArray: () => removeFromArray
removeFromArray: () => removeFromArray,
swapItemsInArray: () => swapItemsInArray
});

@@ -45,1 +46,4 @@ module.exports = __toCommonJS(array_exports);

};
const swapItemsInArray = (arr, i, j) => {
[arr[i], arr[j]] = [arr[j], arr[i]];
};

4

package.json
{
"name": "@domql/utils",
"version": "2.3.90",
"version": "2.3.91",
"license": "MIT",

@@ -25,3 +25,3 @@ "type": "module",

},
"gitHead": "ab1a0f74fc9a7cc67cd5e732c7a8577d98fbb9b0"
"gitHead": "8a3dee2d0d71ad50ddcc09c47281cbb634c3f0bf"
}
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