/**
* Returns the supplied value if the actual value is `null`, `undefined` or `NaN`,
* otherwise returns the actual value itself.
*/exportfunctiondefaultTo(value) {
return(actual) => actual == null || Number.isNaN(actual) ? value : actual;
}
//# sourceMappingURL=defaultTo.js.map