88deee5ef55e456dcdef30d0e74949f402940378dacd77216381176f1636b44d7200a043e21f674ebf4109120aab6766584a8df5c5d2f9ec7fb40a8a7f2b0f 208 B

12345678
  1. // 20.2.2.11 Math.clz32(x)
  2. var $export = require('./_export');
  3. $export($export.S, 'Math', {
  4. clz32: function clz32(x) {
  5. return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;
  6. }
  7. });