17 lines
247 B
JavaScript
Raw Normal View History

2021-08-01 08:25:44 +03:00
const log = {}
log.print = function (string) {
process.stdout.write(string)
}
log.start = function () {
this.print('Starting...\n')
2021-08-01 19:45:15 +03:00
console.time('Done in')
2021-08-01 08:25:44 +03:00
}
log.finish = function () {
2021-08-01 19:45:15 +03:00
console.timeEnd('Done in')
2021-08-01 08:25:44 +03:00
}
module.exports = log