UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

5 lines (4 loc) 123 B
export const mergeAndDedupArrays = (arrays) => { const fusioned = arrays.flat(); return [...new Set(fusioned)]; };