I came through this problem while using it in a scape squence:
console.log('\033c'); // Clear screen
All i had to do was convert it to Hex
console.log('\x1Bc'); // Clear screen
I came through this problem while using it in a scape squence:
console.log('\033c'); // Clear screen
All i had to do was convert it to Hex
console.log('\x1Bc'); // Clear screen