is-implemented.js 147 B

1234567
  1. "use strict";
  2. module.exports = function () {
  3. var imul = Math.imul;
  4. if (typeof imul !== "function") return false;
  5. return imul(-1, 8) === -8;
  6. };