UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

26 lines (23 loc) 369 B
var _curry1 = /*#__PURE__*/ require("./internal/_curry1.js"); /** * Negates its argument. * * @func * @memberOf R * @since v0.9.0 * @category Math * @sig Number -> Number * @param {Number} n * @return {Number} * @example * * R.negate(42); //=> -42 */ var negate = /*#__PURE__*/ _curry1(function negate(n) { return -n; }); module.exports = negate;