uni-ticket-system/node_modules/core-js/internals/math-log10.js

8 lines
180 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
var log = Math.log;
var LOG10E = Math.LOG10E;
// eslint-disable-next-line es/no-math-log10 -- safe
module.exports = Math.log10 || function log10(x) {
return log(x) * LOG10E;
};