SS
Size: a a a
SS
SS
R
Ð
SS
SS
SS
R
SS
Ð
R
Ð
SS
Ð
AC
// index.js
const getUser = async (id) => {…}
module.exports = { getUser, sendMessage, etc…};
// в 2-ом файле я обращаюсь к ней
const bot = require('./index’);
const user = await bot.getUser(id);
// в 3-ем файле также:
const bot = require('./index’);
const user = await bot.getUser(id);
getUser is not a function.
module.exports.getUser = async (id) => {…}
ЮП
r🧬
// index.js
const getUser = async (id) => {…}
module.exports = { getUser, sendMessage, etc…};
// в 2-ом файле я обращаюсь к ней
const bot = require('./index’);
const user = await bot.getUser(id);
// в 3-ем файле также:
const bot = require('./index’);
const user = await bot.getUser(id);
getUser is not a function.
module.exports.getUser = async (id) => {…}
Ð
Ð