Sha256: 89759ca212c2a513e0a1ef2673d85dba3166b5aebf9fd1410c36c78dfb738c3a

Contents?: true

Size: 304 Bytes

Versions: 66

Compression:

Stored size: 304 Bytes

Contents

// 20.2.2.7 Math.atanh(x)
var $export = require('./_export');
var $atanh = Math.atanh;

// Tor Browser bug: Math.atanh(-0) -> 0
$export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', {
  atanh: function atanh(x) {
    return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;
  }
});

Version data entries

66 entries across 30 versions & 8 rubygems

Version Path
cortex-0.1.3 spec/dummy/node_modules/core-js/library/modules/es6.math.atanh.js
cortex-0.1.3 spec/dummy/node_modules/core-js/modules/es6.math.atanh.js
condenser-0.0.4 lib/condenser/processors/node_modules/core-js/modules/es6.math.atanh.js
condenser-0.0.4 lib/condenser/processors/node_modules/core-js/library/modules/es6.math.atanh.js
dragonfly_puppeteer-0.1.0 node_modules/core-js/library/modules/es6.math.atanh.js
dragonfly_puppeteer-0.1.0 node_modules/core-js/modules/es6.math.atanh.js