Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "reflux", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"homepage": "https://github.com/spoike/reflux", | ||
@@ -5,0 +5,0 @@ "authors": [ |
{ | ||
"name": "reflux", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "A simple library for uni-directional dataflow application architecture inspired by ReactJS Flux", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -30,2 +30,4 @@ /* | ||
module.exports.EventEmitter = require('eventemitter3'); | ||
module.exports.nextTick = setTimeout; | ||
module.exports.nextTick = function(callback) { | ||
setTimeout(callback, 0); | ||
}; |
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
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
47962
922