update hash files test

This commit is contained in:
Salman Muin Kayser Chishti
2025-11-18 14:21:47 +00:00
parent 7cba4c8084
commit a3588a70ba
5 changed files with 64 additions and 63 deletions
@@ -1,8 +1,8 @@
//first half of © character
process.stdout.write(Buffer.from([0xC2]), (err) => {
process.stdout.write(Buffer.from([0xC2]), () => {
//write in the callback so that the second byte is sent separately
setTimeout(() => {
process.stdout.write(Buffer.from([0xA9])) //second half of © character
}, 5000)
}, 100)
})