1.0.3 • Published 7 years ago

@jondotsoy/map-async v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

How to install

npm install @jondotsoy/map-async

How to use

// ES5
const {mapAsync} = require("@jondotsoy/map-async")
// ES6
import mapAsync from "@jondotsoy/map-async"

await mapAsync([1, 2, 3, 4, 5, 6, 7, 8], async (el, indexEl, arr) => (el * 2))
// => [2, 4, 6, 8, 10, 12, 14, 16]

use as array.mapAsync

// ES5
require("@jondotsoy/map-async/polyfill")
// ES6
import "@jondotsoy/map-async/polyfill"

await [1, 2, 3, 4, 5, 6, 7, 8].mapAsync(async (el, indexEl, arr) => (el * 2))
// => [2, 4, 6, 8, 10, 12, 14, 16]
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago