1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import { buildMessage, ValidateBy } from '../common/ValidateBy';
| export const IS_EMPTY = 'isEmpty';
| /**
| * Checks if given value is empty (=== '', === null, === undefined).
| */
| export function isEmpty(value) {
| return value === '' || value === null || value === undefined;
| }
| /**
| * Checks if given value is empty (=== '', === null, === undefined).
| */
| export function IsEmpty(validationOptions) {
| return ValidateBy({
| name: IS_EMPTY,
| validator: {
| validate: (value, args) => isEmpty(value),
| defaultMessage: buildMessage(eachPrefix => eachPrefix + '$property must be empty', validationOptions),
| },
| }, validationOptions);
| }
| //# sourceMappingURL=IsEmpty.js.map
|
|