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.35 to 0.0.36

1

index.d.ts

@@ -33,1 +33,2 @@ import { Tuple2 } from "@ts-common/tuple";

export declare const reverse: <T>(i: Iterable<T> | undefined) => ReadonlyArray<T>;
export declare const isEmpty: <T>(i: Iterable<T> | undefined) => boolean;

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

exports.reverse = (i) => exports.fold(i, (a, b) => [b, ...a], new Array());
exports.isEmpty = (i) => exports.find(i, () => true) === undefined;

4

package.json
{
"name": "@ts-common/iterator",
"version": "0.0.35",
"version": "0.0.36",
"description": "Iterator library for JavaScript and TypeScript",

@@ -42,3 +42,3 @@ "main": "index.js",

"tslint-immutable": "^4.6.0",
"typescript": "3.0.0-rc"
"typescript": "^3.0.1"
},

@@ -45,0 +45,0 @@ "dependencies": {

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