возвращаться значение
module.exports = () => async (ctx) => {
const doc = await createUserDocumentId(ctx)
console.log(doc)
}
но возвращается [AsyncFunction (anonymous)]
почему так может быть?
Скинь функцию которую вызываешь
module.exports = () => async (ctx) => { let doc const currentUserId = ctx.message.from.id console.log(currentUserId) // read data from the file const fileData = JSON.parse(fs.readFileSync("../../database.json")) // check if user not exist in file if (!(currentUserId in fileData)) { doc = await createDocumentTemplate() await doc.useServiceAccountAuth(creds) fileData[currentUserId] = doc.spreadsheetId fs.writeFileSync("database.json", JSON.stringify(fileData)) return doc } }
Убери знак > )))
Обсуждают сегодня