"use strict"; /** * EmptyValueStrategy — submits empty/whitespace values to catch missing server-side validation. * Applies to: all input types. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.EmptyValueStrategy = void 0; class EmptyValueStrategy { constructor() { this.name = 'EmptyValueStrategy'; } appliesTo(_type) { return true; } values() { return ['', ' ', '\t']; } } exports.EmptyValueStrategy = EmptyValueStrategy;