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

arc-array

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arc-array - npm Package Compare versions

Comparing version 4.0.1 to 4.1.0

__tests__/joinCallback.js

10

index.js

@@ -27,2 +27,10 @@ const is = require('arc-is');

shuffle() {
for (let i = this.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[this[i], this[j]] = [this[j], this[i]];
}
return this;
}
//This is our format for evaluating named prototypes

@@ -53,3 +61,3 @@ toString(){

}
static wrap(_array){

@@ -56,0 +64,0 @@ if(is(_array,true) === 'ArcArray'){

4

package.json
{
"name": "arc-array",
"version": "4.0.1",
"version": "4.1.0",
"description": "An array convenience subclass",

@@ -26,4 +26,4 @@ "main": "index.js",

"devDependencies": {
"tap": "^5.7.1"
"jest": "^24.9.0"
}
}
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