mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
fix: Error Object doesn't support this property or method fixes #147
This commit is contained in:
parent
94da04f045
commit
2de21e77f0
@ -435,7 +435,7 @@
|
|||||||
return Array.prototype.map.call(arr, iterator);
|
return Array.prototype.map.call(arr, iterator);
|
||||||
}
|
}
|
||||||
for (i = 0; i < arr.length; i++) {
|
for (i = 0; i < arr.length; i++) {
|
||||||
result = iterator(arr[i]);
|
result.push(iterator(arr[i]));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user