mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
// 20.2.2.21 Math.log10(x)
|
|
var $export = require('./$.export');
|
|
|
|
$export($export.S, 'Math', {
|
|
log10: function log10(x){
|
|
return Math.log(x) / Math.LN10;
|
|
}
|
|
}); |