Files
JiboSDK/node_modules/mumath/log10.js
2026-03-22 03:21:45 +02:00

10 lines
164 B
JavaScript

/**
* Base 10 logarithm
*
* @module mumath/log10
*/
'use strict';
module.exports = Math.log10 || function (a) {
return Math.log(a) / Math.log(10);
};