Sha256: daaf42db7cafafe67bc4bd73931f958393a1a0cdfbb259390e59e883928d7258
Contents?: true
Size: 511 Bytes
Versions: 112
Compression:
Stored size: 511 Bytes
Contents
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $BigInt = GetIntrinsic('%BigInt%', true); var $TypeError = GetIntrinsic('%TypeError%'); var Type = require('../Type'); var zero = $BigInt && $BigInt(0); // https://262.ecma-international.org/11.0/#sec-numeric-types-bigint-unaryMinus module.exports = function BigIntUnaryMinus(x) { if (Type(x) !== 'BigInt') { throw new $TypeError('Assertion failed: `x` argument must be a BigInt'); } if (x === zero) { return zero; } return -x; };
Version data entries
112 entries across 30 versions & 4 rubygems