Initial commit
[yaffs-website] / node_modules / grunt-contrib-watch / node_modules / lodash / internal / getLength.js
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  * that affects Safari on at least iOS 8.1-8.3 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;