This commit is contained in:
Rowan 2025-04-17 19:16:52 -05:00
parent 3093b8d4f8
commit e13371fa4a

View file

@ -152,3 +152,8 @@ export const repeat = curry((n, x) => {
return results return results
}) })
export const tee = curry((f, x) => {
f(x)
return x
})