ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
20 lines (19 loc) • 555 B
JavaScript
import { defaultTo } from 'ramda';
/**
* Returns the argument if it is not null, undefined or NaN; otherwise the false is returned.
*
* @func
* @category Logic
*
* @example
*
* R_.defaultToFalse(null); //=> false
* R_.defaultToFalse(undefined); //=> false
* R_.defaultToFalse('Ramda'); //=> 'Ramda'
* // parseInt('string') results in NaN
* R_.defaultToFalse(parseInt('string')); //=> false
*
* @sig a -> a | Boolean
*/
var defaultToFalse = /*#__PURE__*/defaultTo(false);
export default defaultToFalse;