js-fp-algorithms icon indicating copy to clipboard operation
js-fp-algorithms copied to clipboard

JavaScript algorithms, in a functional programming style

Results 1 js-fp-algorithms issues
Sort by recently updated
recently updated
newest added
trafficstars

https://github.com/ryanmcdermott/js-fp-algorithms/blob/c90671460400df271512e62f7e29857a810f64f0/uniq/index.js#L16 ``` const uniq = list => [...new Set(list)]; ```