Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@coderich/util

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coderich/util - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

2

package.json
{
"name": "@coderich/util",
"main": "src/index.js",
"version": "0.0.5",
"version": "0.0.6",
"publishConfig": {

@@ -6,0 +6,0 @@ "access": "public"

@@ -47,1 +47,11 @@ const ChildProcess = require('child_process');

};
exports.promiseChain = (promiseThunks) => {
return promiseThunks.reduce((chain, promiseThunk) => {
return chain.then((chainResult) => {
return promiseThunk(chainResult).then((promiseResult) => {
return [...chainResult, promiseResult];
});
});
}, Promise.resolve([]));
};
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