UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

12 lines (11 loc) 420 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cosh = cosh; function cosh(arg) { // discuss at: https://locutus.io/php/cosh/ // parity verified: PHP 8.3 // original by: Onno Marsman (https://twitter.com/onnomarsman) // example 1: cosh(-0.18127180117607017) // returns 1: 1.0164747716114113 return (Math.exp(arg) + Math.exp(-arg)) / 2; }