source: frontend/node_modules/underscore/amd/_isArrayLike.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 454 bytes
Line 
1define(['./_createSizePropertyCheck', './_getLength'], function (_createSizePropertyCheck, _getLength) {
2
3 // Internal helper for collection methods to determine whether a collection
4 // should be iterated as an array or as an object.
5 // Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
6 // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094
7 var isArrayLike = _createSizePropertyCheck(_getLength);
8
9 return isArrayLike;
10
11});
Note: See TracBrowser for help on using the repository browser.