Files
FatCat_Tanks_Challenge/lib/combinators.ts
texhno 545f8b4366 More lib files, more functional
Still missing that 'attack' fn, though :(
2023-12-06 01:21:48 +01:00

8 lines
146 B
TypeScript

export const tap = (fn) => (input) => {
fn(input);
return input;
};
export const doIf = (fn, pred) => (input) =>
pred ? fn(input) : input;