New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

evt

Package Overview
Dependencies
Maintainers
2
Versions
186
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

evt - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

operators/chunksOf.d.ts

4

lib/index.d.ts

@@ -6,1 +6,5 @@ export * from "./types";

export { StatefulEvt } from "./StatefulEvt";
export { to } from "../operators/to";
export { throttleTime } from "../operators/throttleTime";
export { nonNullable } from "../operators/nonNullable";
export { distinct } from "../operators/distinct";

@@ -17,3 +17,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.StatefulEvt = exports.Evt = exports.Ctx = void 0;
exports.distinct = exports.nonNullable = exports.throttleTime = exports.to = exports.StatefulEvt = exports.Evt = exports.Ctx = void 0;
__exportStar(require("./types"), exports);

@@ -27,2 +27,12 @@ __exportStar(require("./util"), exports);

Object.defineProperty(exports, "StatefulEvt", { enumerable: true, get: function () { return StatefulEvt_1.StatefulEvt; } });
var to_1 = require("../operators/to");
Object.defineProperty(exports, "to", { enumerable: true, get: function () { return to_1.to; } });
// TODO: Those operators have no business being exported in the
// main entry point of the library.
var throttleTime_1 = require("../operators/throttleTime");
Object.defineProperty(exports, "throttleTime", { enumerable: true, get: function () { return throttleTime_1.throttleTime; } });
var nonNullable_1 = require("../operators/nonNullable");
Object.defineProperty(exports, "nonNullable", { enumerable: true, get: function () { return nonNullable_1.nonNullable; } });
var distinct_1 = require("../operators/distinct");
Object.defineProperty(exports, "distinct", { enumerable: true, get: function () { return distinct_1.distinct; } });
//# sourceMappingURL=index.js.map

1

lib/util/index.d.ts

@@ -1,2 +0,1 @@

export * from "./genericOperators";
export { compose } from "./compose";
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.compose = void 0;
__exportStar(require("./genericOperators"), exports);
var compose_1 = require("./compose");
Object.defineProperty(exports, "compose", { enumerable: true, get: function () { return compose_1.compose; } });
//# sourceMappingURL=index.js.map
{
"name": "evt",
"version": "2.5.0",
"version": "2.5.1",
"description": "Type safe replacement for node's EventEmitter",

@@ -18,3 +18,2 @@ "repository": {

"./lib/util": "./lib/util/index.js",
"./lib/util/genericOperators": "./lib/util/genericOperators/index.js",
"./tools/inDepth": "./tools/inDepth/index.js",

@@ -75,10 +74,2 @@ "./tools/reducers": "./tools/reducers/index.js",

"./lib/util/convertOperatorToStatelessFLambda": "./lib/util/convertOperatorToStatelessFLambda.js",
"./lib/util/genericOperators/chunksOf": "./lib/util/genericOperators/chunksOf.js",
"./lib/util/genericOperators/distinct": "./lib/util/genericOperators/distinct.js",
"./lib/util/genericOperators/index": "./lib/util/genericOperators/index.js",
"./lib/util/genericOperators/nonNullable": "./lib/util/genericOperators/nonNullable.js",
"./lib/util/genericOperators/onlyIfChanged": "./lib/util/genericOperators/onlyIfChanged.js",
"./lib/util/genericOperators/scan": "./lib/util/genericOperators/scan.js",
"./lib/util/genericOperators/throttleTime": "./lib/util/genericOperators/throttleTime.js",
"./lib/util/genericOperators/to": "./lib/util/genericOperators/to.js",
"./lib/util/index": "./lib/util/index.js",

@@ -118,3 +109,12 @@ "./tools/concatUint8Array": "./tools/concatUint8Array.js",

"./tools/testing/index": "./tools/testing/index.js",
"./tools/tsafe/capitalize": "./tools/tsafe/capitalize.js"
"./tools/tsafe/capitalize": "./tools/tsafe/capitalize.js",
"./operators": "./operators/index.js",
"./operators/chunksOf": "./operators/chunksOf.js",
"./operators/distinct": "./operators/distinct.js",
"./operators/index": "./operators/index.js",
"./operators/nonNullable": "./operators/nonNullable.js",
"./operators/onlyIfChanged": "./operators/onlyIfChanged.js",
"./operators/scan": "./operators/scan.js",
"./operators/throttleTime": "./operators/throttleTime.js",
"./operators/to": "./operators/to.js"
},

@@ -181,11 +181,11 @@ "author": "u/garronej",

"./src/lib/util/convertOperatorToStatelessFLambda.ts",
"./src/lib/util/genericOperators/chunksOf.ts",
"./src/lib/util/genericOperators/distinct.ts",
"./src/lib/util/genericOperators/index.ts",
"./src/lib/util/genericOperators/nonNullable.ts",
"./src/lib/util/genericOperators/onlyIfChanged.ts",
"./src/lib/util/genericOperators/scan.ts",
"./src/lib/util/genericOperators/throttleTime.ts",
"./src/lib/util/genericOperators/to.ts",
"./src/lib/util/index.ts",
"./src/operators/chunksOf.ts",
"./src/operators/distinct.ts",
"./src/operators/index.ts",
"./src/operators/nonNullable.ts",
"./src/operators/onlyIfChanged.ts",
"./src/operators/scan.ts",
"./src/operators/throttleTime.ts",
"./src/operators/to.ts",
"./src/tools/Deferred.ts",

@@ -381,29 +381,29 @@ "./src/tools/concatUint8Array.ts",

"./lib/util/convertOperatorToStatelessFLambda.js.map",
"./lib/util/genericOperators/chunksOf.d.ts",
"./lib/util/genericOperators/chunksOf.js",
"./lib/util/genericOperators/chunksOf.js.map",
"./lib/util/genericOperators/distinct.d.ts",
"./lib/util/genericOperators/distinct.js",
"./lib/util/genericOperators/distinct.js.map",
"./lib/util/genericOperators/index.d.ts",
"./lib/util/genericOperators/index.js",
"./lib/util/genericOperators/index.js.map",
"./lib/util/genericOperators/nonNullable.d.ts",
"./lib/util/genericOperators/nonNullable.js",
"./lib/util/genericOperators/nonNullable.js.map",
"./lib/util/genericOperators/onlyIfChanged.d.ts",
"./lib/util/genericOperators/onlyIfChanged.js",
"./lib/util/genericOperators/onlyIfChanged.js.map",
"./lib/util/genericOperators/scan.d.ts",
"./lib/util/genericOperators/scan.js",
"./lib/util/genericOperators/scan.js.map",
"./lib/util/genericOperators/throttleTime.d.ts",
"./lib/util/genericOperators/throttleTime.js",
"./lib/util/genericOperators/throttleTime.js.map",
"./lib/util/genericOperators/to.d.ts",
"./lib/util/genericOperators/to.js",
"./lib/util/genericOperators/to.js.map",
"./lib/util/index.d.ts",
"./lib/util/index.js",
"./lib/util/index.js.map",
"./operators/chunksOf.d.ts",
"./operators/chunksOf.js",
"./operators/chunksOf.js.map",
"./operators/distinct.d.ts",
"./operators/distinct.js",
"./operators/distinct.js.map",
"./operators/index.d.ts",
"./operators/index.js",
"./operators/index.js.map",
"./operators/nonNullable.d.ts",
"./operators/nonNullable.js",
"./operators/nonNullable.js.map",
"./operators/onlyIfChanged.d.ts",
"./operators/onlyIfChanged.js",
"./operators/onlyIfChanged.js.map",
"./operators/scan.d.ts",
"./operators/scan.js",
"./operators/scan.js.map",
"./operators/throttleTime.d.ts",
"./operators/throttleTime.js",
"./operators/throttleTime.js.map",
"./operators/to.d.ts",
"./operators/to.js",
"./operators/to.js.map",
"./tools/Deferred.d.ts",

@@ -410,0 +410,0 @@ "./tools/Deferred.js",

@@ -9,1 +9,8 @@

export { to } from "../operators/to";
// TODO: Those operators have no business being exported in the
// main entry point of the library.
export { throttleTime } from "../operators/throttleTime";
export { nonNullable } from "../operators/nonNullable";
export { distinct } from "../operators/distinct";

@@ -1,2 +0,1 @@

export * from "./genericOperators";
export { compose } from "./compose";

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc