array-all-x

Like Array.forEach but does not skip holes.

Usage no npm install needed!

<script type="module">
  import arrayAllX from 'https://cdn.skypack.dev/array-all-x';
</script>

README

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

array-all-x

Like Array.forEach but does not skip holes.

module.exports

This method executes a provided function once for each array element.

Kind: Exported member
Throws:

  • TypeError If array is null or undefined.
  • TypeError If callBack is not a function.
Param Type Description
array array The array to iterate over.
callBack function Function to execute for each element.
[thisArg] * Value to use as this when executing callback.

Example

import all from 'array-all-x';

const items = ['item1', 'item2', 'item3'];
const copy = [];

all(items, function(item) {
  copy.push(item);
});

console.log(copy); // ['item1', 'item2', 'item3']