(root, isExcludedFn)
| 313 | #isExcluded = () => false; |
| 314 | |
| 315 | setup(root, isExcludedFn) { |
| 316 | this.#root = root; |
| 317 | this.#isExcluded = isExcludedFn; |
| 318 | } |
| 319 | |
| 320 | add(value) { |
| 321 | if (this.#isExcluded(resolve(this.#root, value))) { |
no outgoing calls
no test coverage detected