1.0.3 • Published 9 years ago

synchronous-octo-broccoli v1.0.3

Weekly downloads
3
License
MIT
Repository
-
Last release
9 years ago

synchronous-octo-broccoli

Build Status Execute an array of promises, synchronously.

npm install synchronous-octo-broccoli

Usage

const sob = require('synchronous-octo-broccoli');


let testString = '';
const arrayOfPromises = [
    ()=> {
        return new Promise((resolve, reject)=> {
            setTimeout(function () {
                testString += '1';
                resolve();
            }, 10);
        });
    },
    ()=> {
        return new Promise((resolve, reject)=> {
            setTimeout(function () {
                testString += '2';
                resolve();
            }, 200);
        });
        
    },
    ()=> {
        return new Promise((resolve, reject)=> {
            testString += '3';
            resolve(testString);
        });
        
    }];
            
sob(arrayOfPromises).then((d)=>{
    // testString is '123'
});
1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago