Skip to content

Instantly share code, notes, and snippets.

View Swizz's full-sized avatar
🍭
Little Candy

Quentin Gerodel Swizz

🍭
Little Candy
View GitHub Profile
@Swizz
Swizz / filter.js
Last active May 3, 2017 10:19 — forked from mutebg/filter.js
NaiveFP
const filter = (fn, [fst, ...rest]) =>
[fst, ...rest].length === 0 ? [] :
fn(fst) ? [fst, ...filter(fn, rest)] :
filter(fn, rest)