feat: add pinterest support

This commit is contained in:
Snazzah
2023-05-24 12:32:41 -05:00
parent fa4e418e36
commit 40291c4d24
7 changed files with 85 additions and 1 deletions

View File

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