root / HServer / 00.Server / 00.Program / node_modules / lodash / flattenDeep.js
이력 | 보기 | 이력해설 | 다운로드 (577 Bytes)
1 |
var baseFlatten = require('./_baseFlatten'); |
---|---|
2 |
|
3 |
/** Used as references for various `Number` constants. */
|
4 |
var INFINITY = 1 / 0; |
5 |
|
6 |
/**
|
7 |
* Recursively flattens `array`.
|
8 |
*
|
9 |
* @static
|
10 |
* @memberOf _
|
11 |
* @since 3.0.0
|
12 |
* @category Array
|
13 |
* @param {Array} array The array to flatten.
|
14 |
* @returns {Array} Returns the new flattened array.
|
15 |
* @example
|
16 |
*
|
17 |
* _.flattenDeep([1, [2, [3, [4]], 5]]);
|
18 |
* // => [1, 2, 3, 4, 5]
|
19 |
*/
|
20 |
function flattenDeep(array) { |
21 |
var length = array == null ? 0 : array.length; |
22 |
return length ? baseFlatten(array, INFINITY) : [];
|
23 |
} |
24 |
|
25 |
module.exports = flattenDeep; |