aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-register/node_modules/core-js/modules/es6.math.cosh.js
blob: 1e0cffc1a899a9716a1e10d9d9988db0b9a1c244 (plain)
1
2
3
4
5
6
7
8
9
// 20.2.2.12 Math.cosh(x)
var $export = require('./_export');
var exp = Math.exp;

$export($export.S, 'Math', {
  cosh: function cosh(x) {
    return (exp(x = +x) + exp(-x)) / 2;
  }
});