File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ export enum Chars {
3838 HexUpper = '0123456789ABCDEF' ,
3939 SafeAscii = '!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_abcdefghijklmnopqrstuvwxyz{|}~' ,
4040 Safe32 = '2346789bdfghjmnpqrtBDFGHJLMNPQRT' ,
41- Safe64 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'
41+ Safe64 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_' ,
42+ Symbol = '!#$%&()*+,-./:;<=>?@[]^_{|}~'
4243}
4344
4445export const charsName = ( chars : string ) : string => {
@@ -54,6 +55,7 @@ export const charsName = (chars: string): string => {
5455 if ( chars === Chars . Safe32 ) return 'safe32'
5556 if ( chars === Chars . Safe64 ) return 'safe64'
5657 if ( chars === Chars . SafeAscii ) return 'safeAscii'
58+ if ( chars === Chars . Symbol ) return 'symbol'
5759 return 'custom'
5860}
5961
You can’t perform that action at this time.
0 commit comments