/**
* Returns true if all items in the enumerable match the predicate
*
* @function defaultTo
* @description Returns true if all items in the enumerable match the predicate
* @since v1.0.2
* @sig a -> b -> a | b
* @param {a} default The default value.
* @param {b} val `val` will be returned instead of `default` unless `val` is `null`, `undefined` or `NaN`.
* @return {*} The second value if it is not `null`, `undefined` or `NaN`, otherwise the default value
**/
import curry from './curry'
export default curry(function defaultTo (d, v) {
// eslint-disable-next-line no-self-compare
return v == null || v !== v ? d : v
})