9 lines
212 B
Plaintext
9 lines
212 B
Plaintext
|
|
export namespace Validators {
|
||
|
|
const Regs = {
|
||
|
|
link: /(https?|ftp):\/\/(-\.)?([^\s/?#-]+\.?)+(\/[^\s]*)?@iS/,
|
||
|
|
}
|
||
|
|
|
||
|
|
// @ts-ignore
|
||
|
|
export const LinkValidator = (value, component) => Regs.link.test(value)
|
||
|
|
}
|