diff --git a/utils.js b/utils.js new file mode 100644 index 0000000..8e865c4 --- /dev/null +++ b/utils.js @@ -0,0 +1,9 @@ +const fs = require('fs-extra'); +const Path = require('path'); + +module.exports = { + log: console.log, + path: (...paths) => Path.join(__dirname, ...paths), + saveData: (data) => fs.writeJsonSync(Path.join(__dirname, 'data.json'), data, { spaces: 4 }), + verify: (req, tokens) => req.headers.authorization && tokens.includes(req.headers.authorization) +} \ No newline at end of file