(query, value, { force } = {})
| 263 | |
| 264 | // creates objects along the way for the provided `query` parameter and assigns `value` to the last property of the query chain |
| 265 | set (query, value, { force } = {}) { |
| 266 | setter({ |
| 267 | data: this.#data, |
| 268 | key: query, |
| 269 | value, |
| 270 | force, |
| 271 | }) |
| 272 | } |
| 273 | |
| 274 | // deletes the value of the property found at `query` |
| 275 | delete (query) { |
no test coverage detected