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

stump-cycle-dom

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stump-cycle-dom - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

9

lib/cjs/EventDelegator.js

@@ -123,2 +123,11 @@ "use strict";

return non_bubble_subject.compose(whenComplete_1.default(function () {
var _a = input_1, _s = _a[0], et = _a[1], ef = _a[2], _d = _a[3];
var elements = ef.call();
elements.forEach(function (element) {
var subs = element.subs;
if (subs && subs[et]) {
subs[et].unsubscribe();
delete subs[et];
}
});
_this.nonBubblingListenersToAdd.delete(input_1);

@@ -125,0 +134,0 @@ }));

@@ -121,2 +121,11 @@ var __assign = (this && this.__assign) || function () {

return non_bubble_subject.compose(whenComplete(function () {
var _a = input_1, _s = _a[0], et = _a[1], ef = _a[2], _d = _a[3];
var elements = ef.call();
elements.forEach(function (element) {
var subs = element.subs;
if (subs && subs[et]) {
subs[et].unsubscribe();
delete subs[et];
}
});
_this.nonBubblingListenersToAdd.delete(input_1);

@@ -123,0 +132,0 @@ }));

2

package.json
{
"name": "stump-cycle-dom",
"version": "0.0.14",
"version": "0.0.15",
"description": "The standard DOM Driver for Cycle.js, based on Snabbdom",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -172,2 +172,13 @@ import xs, {Stream, Subscription} from 'xstream';

return non_bubble_subject.compose(whenComplete(() => {
const [_s, et, ef, _d] = input as any
var elements = ef.call();
elements.forEach(function (element: any) {
var subs = element.subs;
if (subs && subs[et]) {
subs[et].unsubscribe();
delete subs[et]
}
});
this.nonBubblingListenersToAdd.delete(input as any);

@@ -174,0 +185,0 @@ }))

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