(query)
| 255 | |
| 256 | // return the value for a single query if found; otherwise, returns undefined |
| 257 | get (query) { |
| 258 | const obj = this.query(query) |
| 259 | if (obj) { |
| 260 | return obj[query] |
| 261 | } |
| 262 | } |
| 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 } = {}) { |
no test coverage detected