ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
31 lines (30 loc) • 746 B
JavaScript
import isNotNumeric from './isNotNumeric';
/**
* Alias for `isNotNumeric`.
*
* @deprecated
* @func
* @category Logic
* @see isNotNumeric
*
* @example
*
* R_.notNumeric(-1) // false
* R_.notNumeric(0) // false
* R_.notNumeric(1) // false
* R_.notNumeric(1.1) // false
* R_.notNumeric(Infinity) // true
* R_.notNumeric(NaN) // true
* R_.notNumeric('') // true
* R_.notNumeric(() => {}) // true
* R_.notNumeric(false) // true
* R_.notNumeric(null) // true
* R_.notNumeric(undefined)// true
* R_.notNumeric({}) // true
* R_.notNumeric([]) // true
*
* @sig a -> Boolean
*
*/
var notNumeric = isNotNumeric;
export default notNumeric;