math.js 691 B

123456789101112131415161718
  1. require('../modules/es6.math.acosh');
  2. require('../modules/es6.math.asinh');
  3. require('../modules/es6.math.atanh');
  4. require('../modules/es6.math.cbrt');
  5. require('../modules/es6.math.clz32');
  6. require('../modules/es6.math.cosh');
  7. require('../modules/es6.math.expm1');
  8. require('../modules/es6.math.fround');
  9. require('../modules/es6.math.hypot');
  10. require('../modules/es6.math.imul');
  11. require('../modules/es6.math.log10');
  12. require('../modules/es6.math.log1p');
  13. require('../modules/es6.math.log2');
  14. require('../modules/es6.math.sign');
  15. require('../modules/es6.math.sinh');
  16. require('../modules/es6.math.tanh');
  17. require('../modules/es6.math.trunc');
  18. module.exports = require('../modules/_core').Math;