mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-20 17:37:19 +02:00
12 lines
225 B
Go
12 lines
225 B
Go
package ansi
|
|
|
|
// ResetInitialState (RIS) resets the terminal to its initial state.
|
|
//
|
|
// ESC c
|
|
//
|
|
// See: https://vt100.net/docs/vt510-rm/RIS.html
|
|
const (
|
|
ResetInitialState = "\x1bc"
|
|
RIS = ResetInitialState
|
|
)
|