class-validator
Version:
Decorator-based property validation for classes.
24 lines • 901 B
JavaScript
import { buildMessage, ValidateBy } from '../common/ValidateBy';
import isUppercaseValidator from 'validator/lib/isUppercase';
export var 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: function (value, args) { return isUppercase(value); },
defaultMessage: buildMessage(function (eachPrefix) { return eachPrefix + '$property must be uppercase'; }, validationOptions),
},
}, validationOptions);
}
//# sourceMappingURL=IsUppercase.js.map