UNPKG

194 BJavaScriptView Raw
1'use strict';
2var log = Math.log;
3var LOG10E = Math.LOG10E;
4
5// eslint-disable-next-line es/no-math-log10 -- safe
6module.exports = Math.log10 || function log10(x) {
7 return log(x) * LOG10E;
8};