cosh.js 88 B

12345
  1. export default function(x) {
  2. var r = Math.exp(x);
  3. r = (r + 1 / r) / 2;
  4. return r;
  5. }