import { defaultTo } from "https://deno.land/x/rambda@9.3.0/mod.ts";
It returns defaultValue
, if all of inputArguments
are undefined
, null
or NaN
.
Else, it returns the first truthy inputArguments
instance(from left to right).
import { defaultTo } from "https://deno.land/x/rambda@9.3.0/mod.ts";
It returns defaultValue
, if all of inputArguments
are undefined
, null
or NaN
.
Else, it returns the first truthy inputArguments
instance(from left to right).