class-validator-multi-lang
Version:
Decorator-based property validation for classes.
25 lines • 873 B
JavaScript
import { buildMessage, ValidateBy } from '../common/ValidateBy';
import isJwtValidator from 'validator/lib/isJWT';
import { getText } from '../../multi-lang';
export const IS_JWT = 'isJwt';
/**
* Checks if the string is valid JWT token.
* If given value is not a string, then it returns false.
*/
export function isJWT(value) {
return typeof value === 'string' && isJwtValidator(value);
}
/**
* Checks if the string is valid JWT token.
* If given value is not a string, then it returns false.
*/
export function IsJWT(validationOptions) {
return ValidateBy({
name: IS_JWT,
validator: {
validate: (value, args) => isJWT(value),
defaultMessage: buildMessage(eachPrefix => eachPrefix + getText('$property must be a jwt string'), validationOptions),
},
}, validationOptions);
}
//# sourceMappingURL=IsJWT.js.map