UNPKG

298 BJavaScriptView Raw
1'use strict';
2var log = Math.log;
3
4// `Math.log1p` method implementation
5// https://tc39.es/ecma262/#sec-math.log1p
6// eslint-disable-next-line es/no-math-log1p -- safe
7module.exports = Math.log1p || function log1p(x) {
8 var n = +x;
9 return n > -1e-8 && n < 1e-8 ? n - n * n / 2 : log(1 + n);
10};