@reactive-js/enumerable
Advanced tools
Comparing version 0.0.33 to 0.0.34
@@ -0,1 +1,5 @@ | ||
export { first } from "./internal/first"; | ||
export { forEach } from "./internal/forEach"; | ||
export { fromIterable, fromIterator } from "./internal/fromIterator"; | ||
export { EnumeratorLike, EnumerableLike } from "./internal/interfaces"; | ||
export { toIterable } from "./internal/toIterable"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var first_1 = require("./internal/first"); | ||
exports.first = first_1.first; | ||
var forEach_1 = require("./internal/forEach"); | ||
exports.forEach = forEach_1.forEach; | ||
var fromIterator_1 = require("./internal/fromIterator"); | ||
exports.fromIterable = fromIterator_1.fromIterable; | ||
exports.fromIterator = fromIterator_1.fromIterator; | ||
var toIterable_1 = require("./internal/toIterable"); | ||
exports.toIterable = toIterable_1.toIterable; | ||
//# sourceMappingURL=index.js.map |
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface EnumeratorLike<TReq, T> extends DisposableLike { | ||
export interface EnumeratorLike<TReq, T> { | ||
readonly current: T; | ||
@@ -8,3 +8,3 @@ readonly hasCurrent: boolean; | ||
export interface EnumerableLike<TReq, T> { | ||
enumerate(): EnumeratorLike<TReq, T>; | ||
enumerate(): EnumeratorLike<TReq, T> & DisposableLike; | ||
} |
@@ -0,1 +1,5 @@ | ||
export { first } from "./internal/first"; | ||
export { forEach } from "./internal/forEach"; | ||
export { fromIterable, fromIterator } from "./internal/fromIterator"; | ||
export { EnumeratorLike, EnumerableLike } from "./internal/interfaces"; | ||
export { toIterable } from "./internal/toIterable"; |
@@ -0,1 +1,5 @@ | ||
export { first } from "./internal/first"; | ||
export { forEach } from "./internal/forEach"; | ||
export { fromIterable, fromIterator } from "./internal/fromIterator"; | ||
export { toIterable } from "./internal/toIterable"; | ||
//# sourceMappingURL=index.js.map |
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface EnumeratorLike<TReq, T> extends DisposableLike { | ||
export interface EnumeratorLike<TReq, T> { | ||
readonly current: T; | ||
@@ -8,3 +8,3 @@ readonly hasCurrent: boolean; | ||
export interface EnumerableLike<TReq, T> { | ||
enumerate(): EnumeratorLike<TReq, T>; | ||
enumerate(): EnumeratorLike<TReq, T> & DisposableLike; | ||
} |
@@ -0,2 +1,6 @@ | ||
export { first } from "./internal/first"; | ||
export { forEach } from "./internal/forEach"; | ||
export { fromIterable, fromIterator } from "./internal/fromIterator"; | ||
export { EnumeratorLike, EnumerableLike } from "./internal/interfaces"; | ||
export { toIterable } from "./internal/toIterable"; | ||
//# sourceMappingURL=index.d.ts.map |
import { DisposableLike } from "@reactive-js/disposable"; | ||
export interface EnumeratorLike<TReq, T> extends DisposableLike { | ||
export interface EnumeratorLike<TReq, T> { | ||
readonly current: T; | ||
@@ -8,4 +8,4 @@ readonly hasCurrent: boolean; | ||
export interface EnumerableLike<TReq, T> { | ||
enumerate(): EnumeratorLike<TReq, T>; | ||
enumerate(): EnumeratorLike<TReq, T> & DisposableLike; | ||
} | ||
//# sourceMappingURL=interfaces.d.ts.map |
{ | ||
"name": "@reactive-js/enumerable", | ||
"version": "0.0.33", | ||
"version": "0.0.34", | ||
"main": "dist/cjs/index.js", | ||
@@ -41,4 +41,5 @@ "module": "dist/esm5/index.js", | ||
"dependencies": { | ||
"@reactive-js/disposable": "^0.0.33", | ||
"@reactive-js/pipe": "^0.0.33" | ||
"@reactive-js/disposable": "^0.0.34", | ||
"@reactive-js/option": "^0.0.34", | ||
"@reactive-js/pipe": "^0.0.34" | ||
}, | ||
@@ -68,3 +69,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "1c5eece990f7e48fce3f8510f74a5204fc69c4b5" | ||
"gitHead": "057b4a00c7069f12169d6f8a406d140769c1a349" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
21133
51
256
3
1
+ Added@reactive-js/option@^0.0.34
+ Added@reactive-js/disposable@0.0.34(transitive)
+ Added@reactive-js/option@0.0.34(transitive)
+ Added@reactive-js/pipe@0.0.34(transitive)
- Removed@reactive-js/disposable@0.0.33(transitive)
- Removed@reactive-js/pipe@0.0.33(transitive)
Updated@reactive-js/pipe@^0.0.34