node-draftlog
node-draftlog copied to clipboard
can't generate multiple lines
Let's say I have codes like this below:
let a = console.draft(' ')
let b = console.draft('')
setInterval(() => {
a('something')
b('something')
}, 1000)
It only shows a string.
Can you try with b having at least one char?