blob: d1a31c3b51d6172e1169490135a8050ac97f36c8 [file] [log] [blame] [edit]
export function divide(a, b){
if (arguments.length === 1) return _b => divide(a, _b)
return a / b
}