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