blob: b78269cf0a13973591f056da685952632c0465d6 [file] [log] [blame] [edit]
export function both(f, g){
if (arguments.length === 1) return _g => both(f, _g)
return (...input) => f(...input) && g(...input)
}