Files
LAB5/3/Новый текстовый документ.txt
2023-11-10 10:10:42 +03:00

13 lines
256 B
Plaintext

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);
};