is-implemented.js 159 B

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