@thi.ng/iterators
Advanced tools
Comparing version 4.1.7 to 4.1.8
@@ -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) |
"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); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78565
1032
Updated@thi.ng/dcons@^0.3.2