maths.js 192 B

123456789101112131415
  1. "use strict";
  2. exports.Maths = {
  3. "multiply": function() {
  4. return 2 + 2;
  5. },
  6. "divide": function() {
  7. return 42 / 11;
  8. },
  9. };
  10. if (!module.main) require("benchmarksman").runner(exports);