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

@contrail/util

Package Overview
Dependencies
Maintainers
0
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrail/util - npm Package Compare versions

Comparing version 1.0.49 to 1.0.50

lib/timer-util/timer-util.d.ts

1

lib/index.d.ts

@@ -6,1 +6,2 @@ export * from './object-util/object-util';

export * from './app-util/app-util';
export * from './timer-util/timer-util';

@@ -22,1 +22,2 @@ "use strict";

__exportStar(require("./app-util/app-util"), exports);
__exportStar(require("./timer-util/timer-util"), exports);

1

lib/object-util/object-util.d.ts

@@ -10,3 +10,2 @@ import { cloneDeep } from './cloneDeep/cloneDeep';

static setByPath(obj: any, path: string, value: any): void;
static chunk(array: any[], size: number): any[];
static isObject: typeof isObject;

@@ -13,0 +12,0 @@ static mergeDeep: typeof mergeDeep;

@@ -33,9 +33,2 @@ "use strict";

}
static chunk(array, size) {
const chunked = [];
for (let i = 0; i < array.length; i = i + size) {
chunked.push(array.slice(i, i + size));
}
return chunked;
}
}

@@ -42,0 +35,0 @@ exports.ObjectUtil = ObjectUtil;

{
"name": "@contrail/util",
"version": "1.0.49",
"version": "1.0.50",
"description": "General javascript utilities",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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