Skip to content

Instantly share code, notes, and snippets.

@kek-Sec
Created June 10, 2021 09:24
Show Gist options
  • Save kek-Sec/093d12c4fcf14ed986fead1544623834 to your computer and use it in GitHub Desktop.
Save kek-Sec/093d12c4fcf14ed986fead1544623834 to your computer and use it in GitHub Desktop.
Typescript dictionaries - symbols - numbers - uppercase - lowercase
let symbols_dict:Array<string> = ['!','@','#','$','%','^','&','*','(',')','_','-','=','+','<','>',':','~',']','['];
let numbers_dict:Array<string> = ['1','2','3','4','5','6','7','8','9','0'];
let lowercase_dict:Array<string> = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','x','y','z'];
let uppercase_dict:Array<string> = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','X','Y','Z'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment