mirror of
https://github.com/actions/toolkit
synced 2025-05-09 00:22:56 +00:00
8 lines
276 B
JavaScript
8 lines
276 B
JavaScript
//first half of © character
|
|
process.stdout.write(Buffer.from([0xC2]), (err) => {
|
|
//write in the callback so that the second byte is sent separately
|
|
setTimeout(() => {
|
|
process.stdout.write(Buffer.from([0xA9])) //second half of © character
|
|
}, 5000)
|
|
|
|
})
|