defaultTo.js

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