ninjaPixel / synchronous-octo-broccoli

Iterate over a collection of promises, synchronously.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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'
});

About

Iterate over a collection of promises, synchronously.

License:MIT License


Languages

Language:JavaScript 100.0%