Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@randajan/jet-core

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@randajan/jet-core - npm Package Compare versions

Comparing version 3.2.9 to 3.2.10

14

dist/index.js

@@ -1163,2 +1163,16 @@ var __defProp = Object.defineProperty;

},
sliceMap: (arr, size, callback) => {
if (!jet_default.isRunnable(callback)) {
callback = (_) => _;
}
size = Math.max(1, size) || 1;
const r = [];
if (!Array.isArray(arr)) {
return r;
}
for (let k = 0; k < arr.length; k += size) {
r.push(callback(arr.slice(k, k + size), r.length, size, arr.length));
}
return r;
},
remap: (arr, mapper, ...orderBy) => {

@@ -1165,0 +1179,0 @@ let result, stopped;

2

package.json
{
"name": "@randajan/jet-core",
"version": "3.2.9",
"version": "3.2.10",
"description": "Ecosystem of types and related usefull tools.",

@@ -5,0 +5,0 @@ "repository": "randajan/jet-core",

Sorry, the diff of this file is not supported yet

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