parent
aa1d53c737
commit
f5351cb50c
6 changed files with 31 additions and 18 deletions
@ -0,0 +1,17 @@ |
|||||||
|
import * as yup from 'yup'; |
||||||
|
|
||||||
|
import { REP_IPV4, REP_UUID } from './consts/REG_EXP_PATTERNS'; |
||||||
|
|
||||||
|
/** |
||||||
|
* This is OK because yup uses the template string syntax internally to access |
||||||
|
* the field name. |
||||||
|
*/ |
||||||
|
/* eslint-disable no-template-curly-in-string */ |
||||||
|
|
||||||
|
export const yupLaxUuid = () => |
||||||
|
yup.string().matches(REP_UUID, { message: '${path} must be a valid UUID' }); |
||||||
|
|
||||||
|
export const yupIpv4 = () => |
||||||
|
yup |
||||||
|
.string() |
||||||
|
.matches(REP_IPV4, { message: '${path} must be a valid IPv4 address' }); |
Loading…
Reference in new issue