You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\033 is a valid escape character; it’s an octal representation of the ESC character from ASCII, 1B in hex. And it works in Node.js, browsers and even other langs (e.g. Ruby).
Equivalent to \033 is /\x1B/ that works in lowjs.
The text was updated successfully, but these errors were encountered:
\033
is a valid escape character; it’s an octal representation of the ESC character from ASCII, 1B in hex. And it works in Node.js, browsers and even other langs (e.g. Ruby).Equivalent to
\033
is/\x1B/
that works in lowjs.The text was updated successfully, but these errors were encountered: