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

@ts-common/iterator

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ts-common/iterator - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

2

index.d.ts

@@ -15,2 +15,2 @@ export declare function iterable<T>(createIterator: () => Iterator<T>): Iterable<T>;

export declare function zip<T>(...inputs: Array<Iterable<T>>): Iterable<ReadonlyArray<T>>;
export declare function arrayEqual<T>(a: T[] | undefined, b: T[] | undefined, e: (ai: T, bi: T) => boolean): boolean;
export declare function arrayEqual<T>(a: ReadonlyArray<T> | undefined, b: ReadonlyArray<T> | undefined, e: (ai: T, bi: T) => boolean): boolean;

@@ -91,2 +91,3 @@ "use strict";

exports.max = max;
/* tslint:disable-next-line:readonly-array */
function zip(...inputs) {

@@ -93,0 +94,0 @@ function* iterator() {

{
"name": "@ts-common/iterator",
"version": "0.0.19",
"version": "0.0.20",
"description": "Iterator library for JavaScript and TypeScript",

@@ -41,2 +41,3 @@ "main": "index.js",

"tslint": "^5.10.0",
"tslint-immutable": "^4.6.0",
"typescript": "^2.9.2"

@@ -43,0 +44,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