Sha256: ec2a3183dc8c139c429ba4f7ac619f89ec8f7c81bcb768156aef1d8448d8b191
Contents?: true
Size: 515 Bytes
Versions: 69
Compression:
Stored size: 515 Bytes
Contents
define(function () { /** * Array forEach */ function forEach(arr, callback, thisObj) { if (arr == null) { return; } var i = -1, len = arr.length; while (++i < len) { // we iterate over sparse items since there is no way to make it // work properly on IE 7-8. see #64 if ( callback.call(thisObj, arr[i], i, arr) === false ) { break; } } } return forEach; });
Version data entries
69 entries across 69 versions & 2 rubygems