map-times

1.0.2 • Public • Published

map-times Build Status

Iterate through a count collecting results for each index

Install

$ npm install --save map-times

Usage

var times = require('map-times')

times(3, function (index) {
  return index * 2  
})
//=> [0, 2, 4]

API

times(count, callback) -> array

count

Required
Type: number

The number of times to call the callback.

callback

Required
Type: function
Arguments: index

A function that will be called the specified number of times with the index of the call.

License

MIT © Ben Drucker

Dependents (5)

Package Sidebar

Install

npm i map-times

Weekly Downloads

7

Version

1.0.2

License

MIT

Last publish

Collaborators

  • bendrucker