Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
promise.waterfall
Advanced tools
Runs an array of promises in series, each passing their results to the next promise in the array.
Runs an array of promises in series, each passing their results to the next promise in the array.
$ npm install promise.waterfall --save
var promiseWaterfall = require('promise.waterfall')
function makeAdder (a) {
return function (b) {
b = b || 0
return Promise.resolve(a + b)
}
}
var addOne = makeAdder(1)
promiseWaterfall([
addOne // 1
addOne, // 2
addOne // 3
])
.then(console.log)
.catch(console.error)
promiseWaterfall(functions)
-> promise
Runs the array of functions in series, waiting for each to resolve and passing each result to the next function in the array.
Required
Type: array[function]
FAQs
Runs an array of promises in series, each passing their results to the next promise in the array.
The npm package promise.waterfall receives a total of 2,840 weekly downloads. As such, promise.waterfall popularity was classified as popular.
We found that promise.waterfall demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.