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

@thi.ng/iterators

Package Overview
Dependencies
Maintainers
1
Versions
275
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/iterators - npm Package Compare versions

Comparing version 4.1.7 to 4.1.8

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

<a name="4.1.8"></a>
## [4.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.7...@thi.ng/iterators@4.1.8) (2018-04-26)
**Note:** Version bump only for package @thi.ng/iterators
<a name="4.1.7"></a>

@@ -8,0 +16,0 @@ ## [4.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.6...@thi.ng/iterators@4.1.7) (2018-04-26)

2

concat.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const ensure_1 = require("./ensure");
const iterator_1 = require("./iterator");
const ensure_1 = require("./ensure");
function* concat(...inputs) {

@@ -6,0 +6,0 @@ let iter = iterator_1.iterator(inputs);

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const ensure_1 = require("./ensure");
const iterator_1 = require("./iterator");
const take_1 = require("./take");
const ensure_1 = require("./ensure");
function* dropNth(n, input) {

@@ -7,0 +7,0 @@ let iter = ensure_1.ensureIterable(iterator_1.iterator(input));

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

exports.groupBy = groupBy;
// export const foo = groupBy((x)=>x.toUpperCase(), "AbRaCadaBra")[0];

@@ -5,4 +5,4 @@ "use strict";

const cycle_1 = require("./cycle");
const iterator_1 = require("./iterator");
const map_1 = require("./map");
const iterator_1 = require("./iterator");
function* interleave(...inputs) {

@@ -9,0 +9,0 @@ let n = inputs.length;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const ensure_1 = require("./ensure");
const map_1 = require("./map");
const ensure_1 = require("./ensure");
function* mapcat(fn, ...inputs) {

@@ -6,0 +6,0 @@ inputs.unshift(fn);

{
"name": "@thi.ng/iterators",
"version": "4.1.7",
"version": "4.1.8",
"description": "clojure.core inspired, composable ES6 iterators & generators",

@@ -28,3 +28,3 @@ "main": "./index.js",

"@thi.ng/api": "^2.3.0",
"@thi.ng/dcons": "^0.3.1"
"@thi.ng/dcons": "^0.3.2"
},

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

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const iterator_1 = require("./iterator");
const reduce_1 = require("./reduce");
const iterator_1 = require("./iterator");
function* reductions(rfn, acc, input) {

@@ -6,0 +6,0 @@ let iter = iterator_1.iterator(input);

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