
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
angular-promise-extras-real
Advanced tools
Install the package
bower install --save angular-promise-extras
Add the bower source file to your web page.
Add the angular module ngPromiseExtras
as a dependency of your application module.
var deferreds = [ $q.defer(), $q.defer() ]
var asyncVals = deferreds.map(function(deferred) {
return deferred.promise
})
asyncVals.push(3)
$q.allSettled(asyncVals).then(function(values) {
expect(values).toEqual([
{ state: 'fulfilled', value: 1 },
{ state: 'rejected', reason: 2 },
{ state: 'fulfilled', value: 3 },
])
})
deferreds[0].resolve(1)
deferreds[1].reject(2)
Also works with objects:
var deferreds = [ $q.defer(), $q.defer() ]
var promisesArray = deferreds.map(function(deferred) {
return deferred.promise
})
var promises = { a: promisesArray[0], b: promisesArray[1], c: 3 }
$q.allSettled(promises).then(function(values) {
expect(values).toEqual({
a: { state: 'fulfilled', value: 1 },
b: { state: 'rejected', reason: 2 },
c: { state: 'fulfilled', value: 3 },
})
})
deferreds[0].resolve(1)
deferreds[1].reject(2)
Also provides
$q.map
: works like Bluebird.map
or Bluebird.props
depending on whether an array or an object is passed.$q.mapSettled
: Works like $q.map
but with the settled semantics.$q.resolve
: Works like Bluebird.resolve
.FAQs
Adds some extra functions to $q like $q.allSettled
The npm package angular-promise-extras-real receives a total of 4 weekly downloads. As such, angular-promise-extras-real popularity was classified as not popular.
We found that angular-promise-extras-real 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.