Skip to main content
Module

x/rambda/src/unnest.js

Faster and smaller alternative to Ramda
Latest
File
export function unnest(list){ return list.reduce((acc, item) => { if (Array.isArray(item)){ return [ ...acc, ...item ] }
return [ ...acc, item ] }, [])}