Other Cleanup

This commit is contained in:
mambuco 2023-09-03 00:10:58 +02:00
parent 21d7b4adff
commit 24d665f2a9

View file

@ -71,12 +71,12 @@ export default class cout {
}
if (this.save) {
string.split("\n").forEach((line) => {
log(`${this.emoji ? emoji : ""}[${time} ${type}] | ${line}`);
log(`${this.emoji && emoji}[${time} ${type}] | ${line}`);
})
}
stringc.split("\n").forEach((line) => {
console.log(`${this.emoji ? emojic : ""}[${timec} ${typec}] | ${line}`);
console.log(`${this.emoji && emojic}[${timec} ${typec}] | ${line}`);
})
}