UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

27 lines (24 loc) 463 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _ramda = require("ramda"); /** * Returns true if the arguments are not equal * * @func * @category Logic * * @sig a -> b -> Boolean * * @example * * R_.notEqual(1, 2); // true * R_.notEqual(1, 1); // false * * */ var notEqual = (0, _ramda.complement)(_ramda.equals); var _default = notEqual; exports.default = _default;