dfcreative/mumath

View on GitHub
log10.js

Summary

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