atanh.js 72 B

123
  1. export default function(x) {
  2. return Math.log((x - 1) / (x + 1)) / 2;
  3. }