mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
348 B
9 lines
348 B
4 years ago
|
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)
|
||
|
}
|