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

node-powertools

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-powertools - npm Package Compare versions

Comparing version

to
0.0.3

src/index0.js

2

package.json
{
"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 @@