node-powertools
Advanced tools
Comparing version
{ | ||
"name": "node-powertools", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Powerful assistive functions for Node and Browser environments.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -41,2 +41,3 @@ (function (root, factory) { | ||
Powertools.arrayify = function (input) { | ||
@@ -46,8 +47,10 @@ return !Array.isArray(input) ? [input] : input; | ||
Powertools.wait = function(ms) { | ||
return new Promise(function(resolve, reject) { | ||
setInterval(function() { | ||
resolve(); | ||
}, ms || 1); | ||
}); | ||
return new Promise(function(resolve, reject) { | ||
setInterval(function() { | ||
resolve(); | ||
}, ms || 1); | ||
}); | ||
} | ||
@@ -98,5 +101,2 @@ Powertools.poll = function(fn, options) { | ||
}; | ||
// TODO: Add forceType | ||
@@ -103,0 +103,0 @@ |
13549
35%5
25%184
113.95%