Skip to content

Commit

Permalink
create a dedicated characters enum
Browse files Browse the repository at this point in the history
  • Loading branch information
panoply committed Sep 5, 2023
1 parent de12f96 commit 5cf291c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/utils/chars.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* Empty String
*/
export const NIL = '';

/**
* Whitespace
*/
export const WSP = ' ';

/**
* Newline
*/
export const NWL = '\n';

0 comments on commit 5cf291c

Please sign in to comment.