We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f58e6c3 commit c375a34Copy full SHA for c375a34
dist/flow.js
@@ -1566,7 +1566,8 @@
1566
}
1567
var key;
1568
// Is Array?
1569
- if (Array.isArray(obj)) {
+ // Array.isArray won't work, not only arrays can be iterated by index https://github.com/flowjs/ng-flow/issues/236#
1570
+ if (typeof(obj.length) !== 'undefined') {
1571
for (key = 0; key < obj.length; key++) {
1572
if (callback.call(context, obj[key], key) === false) {
1573
return ;
@@ -1598,7 +1599,7 @@
1598
1599
* Library version
1600
* @type {string}
1601
*/
- Flow.version = '2.10.0';
1602
+ Flow.version = '2.10.1';
1603
1604
if ( typeof module === "object" && module && typeof module.exports === "object" ) {
1605
// Expose Flow as module.exports in loaders that implement the Node
0 commit comments