Socket
Socket
Sign inDemoInstall

fastdom-sequencer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastdom-sequencer - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

13

fastdom-sequencer.js

@@ -126,3 +126,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

data.callbacks[type] = e => {
data.callbacks[type] = function(e) {
debug('event', type, this.scope);

@@ -138,3 +138,3 @@ var interaction = this.createInteraction(el, type);

});
};
}.bind(this);

@@ -381,4 +381,9 @@ // attach the wrapped callback

return Promise.all(flattened)
.then(() => new Promise(resolve => setTimeout(resolve)))
.then(() => this.after(blockers, done, scope));
.then(function() {
return new Promise(function(resolve) { setTimeout(resolve); });
})
.then(function() {
return this.after(blockers, done, scope);
}.bind(this));
},

@@ -385,0 +390,0 @@

{
"name": "fastdom-sequencer",
"description": "",
"version": "1.0.1",
"version": "1.0.2",
"main": "fastdom-sequencer.js",

@@ -6,0 +6,0 @@ "scripts": {

@@ -70,3 +70,3 @@

data.callbacks[type] = e => {
data.callbacks[type] = function(e) {
debug('event', type, this.scope);

@@ -82,3 +82,3 @@ var interaction = this.createInteraction(el, type);

});
};
}.bind(this);

@@ -325,4 +325,9 @@ // attach the wrapped callback

return Promise.all(flattened)
.then(() => new Promise(resolve => setTimeout(resolve)))
.then(() => this.after(blockers, done, scope));
.then(function() {
return new Promise(function(resolve) { setTimeout(resolve); });
})
.then(function() {
return this.after(blockers, done, scope);
}.bind(this));
},

@@ -329,0 +334,0 @@

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