is-implemented.js 181 B

1234567
  1. "use strict";
  2. module.exports = function () {
  3. var atanh = Math.atanh;
  4. if (typeof atanh !== "function") return false;
  5. return Math.round(atanh(0.5) * 1e15) === 549306144334055;
  6. };