Package Exports
- injectpromise
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (injectpromise) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
injectpromise
A minimalistic package to insert a promise instead of using a callback.
Usage
const injectPromise = require('injectpromise')
class SomeClass {
constructor() {
this.injectPromise = injectPromise(this);
}
async getCurrent(callback = false) {
if (!callback)
return this.injectPromise(this.getCurrent);
callSomething
.then(result => {
callback(null, result);
}).catch(err => callback(err));
}
}
module.exports = SomeClass