UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

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 ] }, []) }