1.0.2 • Published 7 years ago

array.find-polyfill v1.0.2

Weekly downloads
33
License
MIT
Repository
github
Last release
7 years ago

General

Provides the js Array.prototyp.find function as polyfill. AMD, Module and Global Scope loading is supported.

Install

bower install array.find-polyfill --save
npm install array.find-polyfill --save

Usage

Browser

<html>
<head>
    <script src="array.find.js"></script>
</head>
</html>

Browser with AMD Loading

define(['array.find'], function(){});

Node Module Loading

require ('array.find');

PhantomJS Module Loading

require ('array.find');