Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Resolve a whole structure of promises, library agnostic
This small library is a promise-library agnostic function that resolves a whole structure or objects, arrays, promises and values to a single promise in which the whole structure is resolved.
Unlike other libraries like q-deep, resolve-deep and
swear, this library is designed to work without dependencies to any promise library
(and also without any other dependencies).
Just pass the promise constructor (i.e. Q.Promise
or Promise
) as first argument.
Note: There is no cycle check. You have to check for cycles yourself before passing the structure to the function
npm install deep-aplus
The following example demonstrates how to use this module:
var Q = require('q')
var deep = require('deep-aplus')(Q.Promise)
// Create a promise that returns a value (for demonstration purposes)
function P(value) {
return Q.delay(1).then(function () {
return value
})
}
deep(2).then(console.log) // 2
.then(() => deep(P(2)))
.then(console.log) // 2
.then(() => deep({a: 1, b: P(2)}))
.then(console.log) // { a: 1, b: 2 }
.then(() => deep({a: 1, b: [2, P(3)]}))
.then(console.log) // { a: 1, b: [ 2, 3 ] }
.then(() => deep({a: 1, b: {c: 2, d: P(3)}}))
.then(console.log) // { a: 1, b: { c: 2, d: 3 } }
// Nesting promises
.then(() => deep({a: 1, b: P([2, P(3)])}))
.then(console.log) // { a: 1, b: [ 2, 3 ] }
.then(() => deep({a: 1, b: P([2, P(3)])}))
.then(console.log) // { a: 1, b: [ 2, 3 ] }
.then(() => deep({a: 1, b: P({c: 2, d: P(3)})}))
.then(console.log) // { a: 1, b: { c: 2, d: 3 } }
// does not dive into classes in order to preserve their functionality
.then(() => {
function A() {
this.a = 2;
this.b = P(3)
}
return deep(new A())
})
.then(console.log) // A { a: 2, b: { state: 'pending' } })
function
Creates a deep(value)
-function using the provided constructor to
create the resulting promise and promises for intermediate steps.
The deep
function returns a promise for the resolution of an arbitrary
structure passed as parameter
Returns: function
- a function that returns a promise (of the provided class)
for a whole object structure
Access: public
Param | Type | Description |
---|---|---|
Promise | function | class in which promises are created |
deep-aplus
is published under the MIT-license.
See LICENSE.md for details.
For release notes, see CHANGELOG.md
See CONTRIBUTING.md.
Version 1.0.3 (Mon, 19 Dec 2016 14:29:28 GMT)
FAQs
Resolve a whole structure of promises
The npm package deep-aplus receives a total of 9,139 weekly downloads. As such, deep-aplus popularity was classified as popular.
We found that deep-aplus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.