Files
lab5dasha/Работа с модулями/welcome/index.js
2023-11-08 14:02:38 +03:00

11 lines
246 B
JavaScript

const morning = require('./morning');
const evening = require('./evening');
module.exports = {
getMorningMessage: function () {
console.log(morning);
},
getEveningMessage: function () {
console.log(evening);
},
};