index.js 523 B

123456789101112131415161718192021
  1. 'use strict';
  2. module.exports = {
  3. acosh: require('./acosh'),
  4. asinh: require('./asinh'),
  5. atanh: require('./atanh'),
  6. cbrt: require('./cbrt'),
  7. clz32: require('./clz32'),
  8. cosh: require('./cosh'),
  9. expm1: require('./expm1'),
  10. fround: require('./fround'),
  11. hypot: require('./hypot'),
  12. imul: require('./imul'),
  13. log10: require('./log10'),
  14. log2: require('./log2'),
  15. log1p: require('./log1p'),
  16. sign: require('./sign'),
  17. sinh: require('./sinh'),
  18. tanh: require('./tanh'),
  19. trunc: require('./trunc')
  20. };