All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules.es6.math.cosh.js Maven / Gradle / Ivy

The newest version!
// 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;
  }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy