is-implemented.js 200 B

1234567
  1. "use strict";
  2. module.exports = function () {
  3. var sinh = Math.sinh;
  4. if (typeof sinh !== "function") return false;
  5. return (sinh(1) === 1.1752011936438014) && (sinh(Number.MIN_VALUE) === 5e-324);
  6. };