A set of handy Javascript functions
pipe(
(v) => v + 1,
(v) => v * 2
)(0)
// 2
multiCond(
["first", "second", "third"],
(v) => v == "second"
);
// true
const debouncedLog = ((e) => console.log(log), 300);
debouncedLog("something to log")