You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
282 B

'use strict';
var log = Math.log, sqrt = Math.sqrt;
module.exports = function (x) {
if (isNaN(x)) return NaN;
x = Number(x);
if (x === 0) return x;
if (!isFinite(x)) return x;
if (x < 0) {
x = -x;
return -log(x + sqrt(x * x + 1));
}
return log(x + sqrt(x * x + 1));
};