File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1524,7 +1524,7 @@ export const base64UrlToUint8Array: (str: Base64Url) => Uint8Array =
15241524 * Uses the same safe alphabet as {@link UrlSafeString} (letters, digits, `-`,
15251525 * `_`). See `UrlSafeString` for details.
15261526 *
1527- * The string must be between 1 and 42 characters.
1527+ * The string must be between 1 and 64 characters.
15281528 *
15291529 * ### Example
15301530 *
@@ -1540,7 +1540,7 @@ export const base64UrlToUint8Array: (str: Base64Url) => Uint8Array =
15401540 * @category String
15411541 */
15421542export const SimpleName = brand ( "SimpleName" , UrlSafeString , ( value ) =>
1543- value . length >= 1 && value . length <= 42
1543+ value . length >= 1 && value . length <= 64
15441544 ? ok ( value )
15451545 : err < SimpleNameError > ( { type : "SimpleName" , value } ) ,
15461546) ;
You can’t perform that action at this time.
0 commit comments