File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,22 @@ limitations under the License.
17
17
18
18
import { encodeUnpaddedBase64Url } from "./base64.ts" ;
19
19
20
+ /**
21
+ * String representing the lowercase latin alphabet for use in secureRandomStringFrom
22
+ * (can be combined with other such exports or other characters by appending strings)
23
+ */
20
24
export const LOWERCASE = "abcdefghijklmnopqrstuvwxyz" ;
25
+
26
+ /**
27
+ * String representing the uppercase latin alphabet for use in secureRandomStringFrom
28
+ * (can be combined with other such exports or other characters by appending strings)
29
+ */
21
30
export const UPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ;
31
+
32
+ /**
33
+ * String representing the arabic numerals for use in secureRandomStringFrom
34
+ * (can be combined with other such exports or other characters by appending strings)
35
+ */
22
36
export const DIGITS = "0123456789" ;
23
37
24
38
export function secureRandomBase64Url ( len : number ) : string {
You can’t perform that action at this time.
0 commit comments