array.find-polyfill
v1.0.2
Published
Polyfill for Array.find if needed.
Downloads
9
Readme
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');