mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import urlRegex from 'url-regex'
|
|
|
|
export const ID = /^[0-9]{17,}$/
|
|
export const Vanity = /^[A-Za-z\d-]+$/
|
|
export const Prefix = /^[^\s]$/
|
|
export const HTTPProtocol = /^https?:\/\/.*?/
|
|
export const Url = urlRegex({ strict: true })
|