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

zeelib

Package Overview
Dependencies
Maintainers
1
Versions
370
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zeelib - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

5

dist/as-yet-unsorted.js

@@ -200,2 +200,7 @@ 'use strict';

return r;
};
var chunk = exports.chunk = function chunk(arr, n) {
if (!arr.length || n) return [];
return [arr.slice(0, n)].concat(chunk(arr.slice(n), n));
};

8

package.json
{
"name": "zeelib",
"description": "My own little micro library thing.",
"version": "0.0.19",
"version": "0.0.20",
"author": {

@@ -13,3 +13,3 @@ "name": "Zac Anger",

"scripts": {
"build": "babel src/index.js -o dist/index.js"
"build": "babel src/ -d dist/"
},

@@ -28,6 +28,6 @@ "homepage": "https://github.com/zacanger/zeelib#readme",

"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-latest": "^6.16.0"
}
}

@@ -191,1 +191,6 @@ // gh:artificerentertainment

}
export const chunk = (arr, n) => {
if (!arr.length || n) return []
return [ arr.slice(0, n) ].concat(chunk(arr.slice(n), n))
}
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