JSPM

injectpromise

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 193054
    • Score
      100M100P100Q157449F
    • License MIT

    A simple Promise injector

    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