![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/es5-ext/math/imul/ |
/* eslint no-bitwise: "off" */ // Thanks: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference // /Global_Objects/Math/imul "use strict"; module.exports = function (val1, val2) { var xh = (val1 >>> 16) & 0xffff , xl = val1 & 0xffff , yh = (val2 >>> 16) & 0xffff , yl = val2 & 0xffff; // The shift by 0 fixes the sign on the high part // the final |0 converts the unsigned value into a signed value return (xl * yl + (((xh * yl + xl * yh) << 16) >>> 0)) | 0; };