Files
salvato.newfreeplanet/src/utils/validators.ts.off
2021-09-16 21:08:02 +02:00

9 lines
212 B
Plaintext
Executable File

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