Files
myprojplanet_vite/src/utils/validators.ts.off

9 lines
212 B
Plaintext
Raw Normal View History

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