Files

10 lines
164 B
JavaScript
Raw Permalink Normal View History

2026-03-22 03:21:45 +02:00
/**
* Base 10 logarithm
*
* @module mumath/log10
*/
'use strict';
module.exports = Math.log10 || function (a) {
return Math.log(a) / Math.log(10);
};