COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220220931/https://github.com/lodash/lodash/blob/master/flatten.js
Permalink
Cannot retrieve contributors at this time
21 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.