UNPKG

core-js

Version:
11 lines (9 loc) 250 B
var log = Math.log; var LOG10E = Math.LOG10E; // `Math.log10` method // https://tc39.github.io/ecma262/#sec-math.log10 require('../internals/export')({ target: 'Math', stat: true }, { log10: function log10(x) { return log(x) * LOG10E; } });