The Wayback Machine - https://web.archive.org/web/20201220220527/https://github.com/lodash/lodash/blob/master/defaultTo.js
Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (22 sloc) 572 Bytes
/**
* Checks `value` to determine whether a default value should be returned in
* its place. The `defaultValue` is returned if `value` is `NaN`, `null`,
* or `undefined`.
*
* @since 4.14.0
* @category Util
* @param {*} value The value to check.
* @param {*} defaultValue The default value.
* @returns {*} Returns the resolved value.
* @example
*
* defaultTo(1, 10)
* // => 1
*
* defaultTo(undefined, 10)
* // => 10
*/
function defaultTo(value, defaultValue) {
return (value == null || value !== value) ? defaultValue : value
}
export default defaultTo
You can’t perform that action at this time.