Sha256: 7c19f44f65c837d23df00ec54d05ee2b5f874f4cd37daa4d647fa426f9e94ea0
Contents?: true
Size: 658 Bytes
Versions: 81
Compression:
Stored size: 658 Bytes
Contents
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var ToInt32 = require('../ToInt32'); var ToUint32 = require('../ToUint32'); var modulo = require('../modulo'); var Type = require('../Type'); // https://262.ecma-international.org/12.0/#sec-numeric-types-number-unsignedRightShift module.exports = function NumberUnsignedRightShift(x, y) { if (Type(x) !== 'Number' || Type(y) !== 'Number') { throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers'); } var lnum = ToInt32(x); var rnum = ToUint32(y); var shiftCount = modulo(rnum, 32); return lnum >>> shiftCount; };
Version data entries
81 entries across 27 versions & 2 rubygems