Socket
Socket
Sign inDemoInstall

@rimbu/stream

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rimbu/stream - npm Package Compare versions

Comparing version 0.6.1 to 0.7.0

dist/main/async-stream/async-fast-iterable.js

4

dist/main/fast-iterator.js

@@ -19,3 +19,7 @@ "use strict";

};
function isFastIterator(iterator) {
return "fastNext" in iterator;
}
FastIterator.isFastIterator = isFastIterator;
})(FastIterator = exports.FastIterator || (exports.FastIterator = {}));
//# sourceMappingURL=fast-iterator.js.map

17

dist/main/internal.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamCustom = void 0;
exports.AsyncStreamCustom = exports.StreamCustom = void 0;
var tslib_1 = require("tslib");
exports.StreamCustom = tslib_1.__importStar(require("./stream-custom"));
exports.StreamCustom = tslib_1.__importStar(require("./stream/stream-custom"));
tslib_1.__exportStar(require("./fast-iterator"), exports);
tslib_1.__exportStar(require("./fast-iterable"), exports);
tslib_1.__exportStar(require("./interface"), exports);
tslib_1.__exportStar(require("./streamable"), exports);
tslib_1.__exportStar(require("./stream-source"), exports);
tslib_1.__exportStar(require("./stream/interface"), exports);
tslib_1.__exportStar(require("./stream/streamable"), exports);
tslib_1.__exportStar(require("./stream/stream-source"), exports);
tslib_1.__exportStar(require("./async-stream/utils"), exports);
exports.AsyncStreamCustom = tslib_1.__importStar(require("./async-stream/async-stream-custom"));
tslib_1.__exportStar(require("./async-stream/interface"), exports);
tslib_1.__exportStar(require("./async-stream/async-fast-iterator"), exports);
tslib_1.__exportStar(require("./async-stream/async-fast-iterable"), exports);
tslib_1.__exportStar(require("./async-stream/async-streamable"), exports);
tslib_1.__exportStar(require("./async-stream/async-stream-source"), exports);
//# sourceMappingURL=internal.js.map

@@ -16,3 +16,7 @@ import { OptLazy } from '@rimbu/common';

};
function isFastIterator(iterator) {
return `fastNext` in iterator;
}
FastIterator.isFastIterator = isFastIterator;
})(FastIterator || (FastIterator = {}));
//# sourceMappingURL=fast-iterator.js.map

@@ -1,7 +0,14 @@

export * as StreamCustom from './stream-custom';
export * as StreamCustom from './stream/stream-custom';
export * from './fast-iterator';
export * from './fast-iterable';
export * from './interface';
export * from './streamable';
export * from './stream-source';
export * from './stream/interface';
export * from './stream/streamable';
export * from './stream/stream-source';
export * from './async-stream/utils';
export * as AsyncStreamCustom from './async-stream/async-stream-custom';
export * from './async-stream/interface';
export * from './async-stream/async-fast-iterator';
export * from './async-stream/async-fast-iterable';
export * from './async-stream/async-streamable';
export * from './async-stream/async-stream-source';
//# sourceMappingURL=internal.js.map

@@ -21,2 +21,3 @@ import { OptLazy } from '@rimbu/common';

const emptyFastIterator: FastIterator<any>;
function isFastIterator<T>(iterator: Iterator<T>): iterator is FastIterator<T>;
}

@@ -1,6 +0,13 @@

export * as StreamCustom from './stream-custom';
export * as StreamCustom from './stream/stream-custom';
export * from './fast-iterator';
export * from './fast-iterable';
export * from './interface';
export * from './streamable';
export * from './stream-source';
export * from './stream/interface';
export * from './stream/streamable';
export * from './stream/stream-source';
export * from './async-stream/utils';
export * as AsyncStreamCustom from './async-stream/async-stream-custom';
export * from './async-stream/interface';
export * from './async-stream/async-fast-iterator';
export * from './async-stream/async-fast-iterable';
export * from './async-stream/async-streamable';
export * from './async-stream/async-stream-source';
{
"name": "@rimbu/stream",
"version": "0.6.1",
"version": "0.7.0",
"description": "Efficient structure representing a sequence of elements, with powerful operations for TypeScript",

@@ -50,3 +50,3 @@ "keywords": [

"bundle:types": "tsc --p tsconfig.types.json",
"clean": "rimraf dist deno_dist",
"clean": "rimraf dist",
"format": "yarn format:base --write",

@@ -62,4 +62,4 @@ "format:base": "prettier \"{!CHANGELOG.md}|**/*.{ts,tsx,js,json,md}\"",

"dependencies": {
"@rimbu/base": "^0.6.1",
"@rimbu/common": "^0.6.1"
"@rimbu/base": "^0.6.2",
"@rimbu/common": "^0.7.0"
},

@@ -72,3 +72,3 @@ "publishConfig": {

},
"gitHead": "ebcf6f5f730b10fd78f14d8886e0b50eb186d5ad"
"gitHead": "28453a94283b4f6bcdac1a07737b2bd58ece3658"
}

@@ -34,2 +34,8 @@ import { OptLazy } from '@rimbu/common';

};
export function isFastIterator<T>(
iterator: Iterator<T>
): iterator is FastIterator<T> {
return `fastNext` in iterator;
}
}

@@ -1,7 +0,16 @@

export * as StreamCustom from './stream-custom';
export * as StreamCustom from './stream/stream-custom';
export * from './fast-iterator';
export * from './fast-iterable';
export * from './interface';
export * from './streamable';
export * from './stream-source';
export * from './stream/interface';
export * from './stream/streamable';
export * from './stream/stream-source';
export * from './async-stream/utils';
export * as AsyncStreamCustom from './async-stream/async-stream-custom';
export * from './async-stream/interface';
export * from './async-stream/async-fast-iterator';
export * from './async-stream/async-fast-iterable';
export * from './async-stream/async-streamable';
export * from './async-stream/async-stream-source';

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc