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

@neovici/cosmoz-utils

Package Overview
Dependencies
Maintainers
4
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neovici/cosmoz-utils - npm Package Compare versions

Comparing version 5.28.0 to 5.29.0

1

dist/array.d.ts

@@ -7,1 +7,2 @@ export declare function array(): [];

export declare const without: <E, L = E>(exclude: E | E[], predicate?: <T extends E | L>(value: T) => unknown) => <T_1 extends L = L>(list: T_1 | T_1[]) => T_1[];
export declare const chunk: <T>(list: T[], size: number) => T[][];

@@ -24,1 +24,2 @@ import { identity } from './function';

};
export const chunk = (list, size) => [...Array(Math.ceil(list.length / size)).keys()].map((i) => list.slice(i * size, (i + 1) * size));

2

package.json
{
"name": "@neovici/cosmoz-utils",
"version": "5.28.0",
"version": "5.29.0",
"description": "Date, money and template management functions commonly needed in Cosmoz views.",

@@ -5,0 +5,0 @@ "keywords": [

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