shim.js 128 B

123456
  1. 'use strict';
  2. module.exports = function (value) {
  3. value = value >>> 0;
  4. return value ? 32 - value.toString(2).length : 32;
  5. };