
Product
Go Support Is Now Generally Available
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.
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 5 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.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.
Security News
vlt adds real-time security selectors powered by Socket, enabling developers to query and analyze package risks directly in their dependency graph.
Security News
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.