@actions/exec: convert to ESM module

This commit is contained in:
Daniel Kennedy
2026-01-28 13:55:13 -05:00
parent a6e9f4bab2
commit 123c3678fa
16 changed files with 63 additions and 36 deletions
@@ -0,0 +1,8 @@
//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)
})