added extra ascii consts

This commit is contained in:
alexchao26
2020-12-26 16:12:36 -05:00
parent 170d43a7ec
commit 4c15ca1606
+2
View File
@@ -49,7 +49,9 @@ func ToString(arg interface{}) string {
const (
ASCIICodeCapA = int('A') // 65
ASCIICodeCapZ = int('Z') // 65
ASCIICodeLowerA = int('a') // 97
ASCIICodeLowerZ = int('z') // 97
)
// ToASCIICode returns the ascii code of a given input