/**
 * 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 = '';
