00a8622bf9dbdf67ee4b2a731f82775b823de8bb
[platform/framework/web/crosswalk-tizen.git] /
1 var baseProperty = require('./baseProperty');
2
3 /**
4  * Gets the "length" property value of `object`.
5  *
6  * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792)
7  * in Safari on iOS 8.1 ARM64.
8  *
9  * @private
10  * @param {Object} object The object to query.
11  * @returns {*} Returns the "length" value.
12  */
13 var getLength = baseProperty('length');
14
15 module.exports = getLength;