@syncify/ansi
Version:
ANSI Colors, Symbols and TUI related terminal enchancements for Syncify.
35 lines (30 loc) • 340 B
text/typescript
/**
* Single whitspace characters
*
* ` `
*/
export const WSP = ' ';
/**
* 2 whitspace characters
*
* ` `
*/
export const WSR = ' ';
/**
* Newline Character
*
* `\n`
*/
export const NWL = '\n';
/**
* 2 Newline Characters
*
* `\n\n`
*/
export const NLR = '\n\n';
/**
* Empty string
*
* ``
*/
export const NIL = '';