Sha256: bdd172566b01d5ae663ec8085881963bd47e35330da5a86e7ff63daf7fe9e96f

Contents?: true

Size: 515 Bytes

Versions: 24

Compression:

Stored size: 515 Bytes

Contents

var $ = require('../internals/export');

// `Math.umulh` method
// https://gist.github.com/BrendanEich/4294d5c212a6d2254703
// TODO: Remove from `core-js@4`
$({ target: 'Math', stat: true }, {
  umulh: function umulh(u, v) {
    var UINT16 = 0xFFFF;
    var $u = +u;
    var $v = +v;
    var u0 = $u & UINT16;
    var v0 = $v & UINT16;
    var u1 = $u >>> 16;
    var v1 = $v >>> 16;
    var t = (u1 * v0 >>> 0) + (u0 * v0 >>> 16);
    return u1 * v1 + (t >>> 16) + ((u0 * v1 >>> 0) + (t & UINT16) >>> 16);
  }
});

Version data entries

24 entries across 23 versions & 7 rubygems

Version Path
condenser-0.0.12 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js
condenser-0.0.11 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js
condenser-0.0.10 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js
condenser-0.0.9 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js