This commit is contained in:
2022-02-16 01:42:05 +03:00
parent d5d5e5d59c
commit be9b8a97dd
2 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
const fs = require('fs')
module.exports = class Output {
class Output {
constructor () {
this.content = ''
}
@@ -21,3 +21,5 @@ module.exports = class Output {
fs.writeFileSync(filename, this.content)
}
}
module.exports = new Output()