Projekt

Obecné

Profil

Stáhnout (168 Bajtů) Statistiky
| Větev: | Revize:
1
// 20.2.2.21 Math.log10(x)
2
var $export = require('./_export');
3

    
4
$export($export.S, 'Math', {
5
  log10: function log10(x) {
6
    return Math.log(x) * Math.LOG10E;
7
  }
8
});
(147-147/303)