mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
489 B
17 lines
489 B
9 years ago
|
var isArguments = require('./isArguments'),
|
||
|
isArray = require('./isArray'),
|
||
|
isArrayLikeObject = require('./isArrayLikeObject');
|
||
|
|
||
|
/**
|
||
|
* Checks if `value` is a flattenable `arguments` object or array.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {*} value The value to check.
|
||
|
* @returns {boolean} Returns `true` if `value` is flattenable, else `false`.
|
||
|
*/
|
||
|
function isFlattenable(value) {
|
||
|
return isArrayLikeObject(value) && (isArray(value) || isArguments(value));
|
||
|
}
|
||
|
|
||
|
module.exports = isFlattenable;
|