Files

9 lines
276 B
JavaScript
Raw Permalink Normal View History

2021-05-21 12:12:16 -04:00
//first half of © character
process.stdout.write(Buffer.from([0xC2]), (err) => {
//write in the callback so that the second byte is sent separately
2021-05-21 15:32:09 -04:00
setTimeout(() => {
process.stdout.write(Buffer.from([0xA9])) //second half of © character
}, 5000)
2021-05-21 12:12:16 -04:00
})