Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es.math.log10.js 255B

123456789101112
  1. var $ = require('../internals/export');
  2. var log = Math.log;
  3. var LOG10E = Math.LOG10E;
  4. // `Math.log10` method
  5. // https://tc39.es/ecma262/#sec-math.log10
  6. $({ target: 'Math', stat: true }, {
  7. log10: function log10(x) {
  8. return log(x) * LOG10E;
  9. }
  10. });