/
home
/
infinitibizsol
/
.trash
/
node_modules.3
/
class-validator
/
esm2015
/
decorator
/
string
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.3/class-validator/esm2015/decorator/string/IsISO8601.js
import { buildMessage, ValidateBy } from '../common/ValidateBy'; import isIso8601Validator from 'validator/lib/isISO8601'; export const IS_ISO8601 = 'isIso8601'; /** * Checks if the string is a valid ISO 8601 date. * If given value is not a string, then it returns false. * Use the option strict = true for additional checks for a valid date, e.g. invalidates dates like 2019-02-29. */ export function isISO8601(value, options) { return typeof value === 'string' && isIso8601Validator(value, options); } /** * Checks if the string is a valid ISO 8601 date. * If given value is not a string, then it returns false. * Use the option strict = true for additional checks for a valid date, e.g. invalidates dates like 2019-02-29. */ export function IsISO8601(options, validationOptions) { return ValidateBy({ name: IS_ISO8601, constraints: [options], validator: { validate: (value, args) => isISO8601(value, args === null || args === void 0 ? void 0 : args.constraints[0]), defaultMessage: buildMessage(eachPrefix => eachPrefix + '$property must be a valid ISO 8601 date string', validationOptions), }, }, validationOptions); } //# sourceMappingURL=IsISO8601.js.map
Copyright ©2k19 -
Hexid
|
Tex7ure