Files
LAB5/MOCHA/operations.js
2023-11-10 09:39:29 +03:00

12 lines
255 B
JavaScript

module.exports.multiply = function (x, y) {
return x * y;
};
module.exports.add = function (x, y) {
return x + y;
};
module.exports.multiplyAsync = function (a, b, callback) {
setTimeout(function () {
callback(a * b);
}, 1000);
};