* @param {string} msg * @returns {Validator}
(msg)
| 185 | * @returns {Validator} |
| 186 | */ |
| 187 | function removed(msg) { |
| 188 | return (input) => { |
| 189 | if (input !== undefined) { |
| 190 | e.options_removed(null, msg); |
| 191 | } |
| 192 | return /** @type {any} */ (undefined); |
| 193 | }; |
| 194 | } |
| 195 | |
| 196 | const warned = new Set(); |
| 197 |