is-implemented.js 163 B

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