COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220220527/https://github.com/lodash/lodash/blob/master/defaultTo.js
Permalink
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.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.