UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

41 lines (37 loc) 1 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _isNotNumeric = _interopRequireDefault(require("./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.default; var _default = notNumeric; exports.default = _default;