Node-Red configuration
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.

math-log1p.js 298B

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