initial commit
This commit is contained in:
9
node_modules/mumath/log10.js
generated
vendored
Normal file
9
node_modules/mumath/log10.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Base 10 logarithm
|
||||
*
|
||||
* @module mumath/log10
|
||||
*/
|
||||
'use strict';
|
||||
module.exports = Math.log10 || function (a) {
|
||||
return Math.log(a) / Math.log(10);
|
||||
};
|
||||
Reference in New Issue
Block a user