* Removes an argument.
(key: string)
| 59 | * Removes an argument. |
| 60 | */ |
| 61 | public remove(key: string): this { |
| 62 | return this.newThis(mapToArgs({ ...this.argMap(), [key]: undefined })); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Merges the set of arguments into this one. |
no test coverage detected