feat: streamable support

This commit is contained in:
Blobadoodle
2023-08-19 17:42:10 +01:00
parent 91a60c1ec2
commit cd1d699886
6 changed files with 75 additions and 1 deletions

View File

@@ -30,5 +30,7 @@ export const testers = {
"vine": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 12),
"pinterest": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 128)
"pinterest": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 128),
"streamable": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length == 6)
}