array-foreach
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/array-foreach package

1.0.2 • Public • Published

array-foreach

Build Status NPM package Bower package Dependency Status License

Array#forEach ponyfill for older browsers

Ponyfill: A polyfill that doesn't overwrite the native method

DESCRIPTION

Provides forEach function for older browsers, use native implememtation if exists.

It's just like

EXAMPLE

var forEach = require('array-foreach');
var result = '';
forEach(['foo', 'bar', 'baz'], function (element, index, array) {
    result += element;
});
console.log(result); // 'foobarbaz'

INSTALL

via npm

Install

$ npm install --save array-foreach

Use

var forEach = require('array-foreach');

via bower

Install

$ bower install --save array-foreach

Load (forEach function is exported)

<script type="text/javascript" src="./path/to/bower_components/array-foreach/build/array-foreach.js"></script>

Use

var result = '';
forEach(['foo', 'bar', 'baz'], function (element, index, array) {
    result += element;
});

AUTHOR

LICENSE

Licensed under the MIT license.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    5,082
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    5,082
  • 1.0.1
    4
  • 1.0.0
    0

Package Sidebar

Install

npm i array-foreach

Weekly Downloads

5,086

Version

1.0.2

License

MIT

Last publish

Collaborators

  • twada