(path: JSONPath, value: unknown, options: ModificationOptions)
| 23 | } |
| 24 | |
| 25 | updating(path: JSONPath, value: unknown, options: ModificationOptions): JSONCFile<T> { |
| 26 | const edits = modify(this.content, path, value, options); |
| 27 | |
| 28 | return new JSONCFile(applyEdits(this.content, edits), this.value); |
| 29 | } |
| 30 | } |
no outgoing calls
no test coverage detected