first
This commit is contained in:
8
node_modules/core-js/internals/math-log10.js
generated
vendored
Normal file
8
node_modules/core-js/internals/math-log10.js
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
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;
|
||||
};
|
Reference in New Issue
Block a user