The Wayback Machine - https://web.archive.org/web/20170626174630/https://github.com/lodash/lodash/blob/master/flatten.js
Skip to content
Permalink
6cb3460 Feb 5, 2017
@jdalton @bertyhell
22 lines (19 sloc) 535 Bytes
import baseFlatten from './.internal/baseFlatten.js'
/**
* Flattens `array` a single level deep.
*
* @since 0.1.0
* @category Array
* @param {Array} array The array to flatten.
* @returns {Array} Returns the new flattened array.
* @see flatMap, flatMapDeep, flatMapDepth, flattenDeep, flattenDepth
* @example
*
* flatten([1, [2, [3, [4]], 5]])
* // => [1, 2, [3, [4]], 5]
*/
function flatten(array) {
const length = array == null ? 0 : array.length
return length ? baseFlatten(array, 1) : []
}
export default flatten
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.