es6.math.log10.js 168 B

12345678
  1. // 20.2.2.21 Math.log10(x)
  2. var $export = require('./_export');
  3. $export($export.S, 'Math', {
  4. log10: function log10(x) {
  5. return Math.log(x) * Math.LOG10E;
  6. }
  7. });