class-validator
Version:
Decorator-based property validation for classes.
24 lines • 865 B
JavaScript
import { buildMessage, ValidateBy } from '../common/ValidateBy';
import isUppercaseValidator from 'validator/lib/isUppercase';
export const IS_UPPERCASE = 'isUppercase';
/**
* Checks if the string is uppercase.
* If given value is not a string, then it returns false.
*/
export function isUppercase(value) {
return typeof value === 'string' && isUppercaseValidator(value);
}
/**
* Checks if the string is uppercase.
* If given value is not a string, then it returns false.
*/
export function IsUppercase(validationOptions) {
return ValidateBy({
name: IS_UPPERCASE,
validator: {
validate: (value, args) => isUppercase(value),
defaultMessage: buildMessage(eachPrefix => eachPrefix + '$property must be uppercase', validationOptions),
},
}, validationOptions);
}
//# sourceMappingURL=IsUppercase.js.map