mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
15
react-app/node_modules/lodash/internal/isArrayLike.js
generated
vendored
Normal file
15
react-app/node_modules/lodash/internal/isArrayLike.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
var getLength = require('./getLength'),
|
||||
isLength = require('./isLength');
|
||||
|
||||
/**
|
||||
* Checks if `value` is array-like.
|
||||
*
|
||||
* @private
|
||||
* @param {*} value The value to check.
|
||||
* @returns {boolean} Returns `true` if `value` is array-like, else `false`.
|
||||
*/
|
||||
function isArrayLike(value) {
|
||||
return value != null && isLength(getLength(value));
|
||||
}
|
||||
|
||||
module.exports = isArrayLike;
|
Reference in New Issue
Block a user