UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

10 lines (8 loc) 177 B
export function unnest(list){ return list.reduce((acc, item) => { if (Array.isArray(item)){ return [ ...acc, ...item ] } return [ ...acc, item ] }, []) }