0.0.3 • Published 7 years ago

tiny-promise-map v0.0.3

Weekly downloads
19
License
-
Repository
github
Last release
7 years ago

💍 tiny-promise-map

NPM version MIT License fliphub flipfam

⚠ note

if possible, use async instead

📦 usage

yarn add tiny-promise-map
npm i tiny-promise-map --save
const promiseMap = require('tiny-promise-map')

📘 examples

promiseMap(promises, (promise, last, index) => {
  return new Promise(resolve => resolve(index))
).then(all => console.log(all))