is-implemented.js 165 B

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