| 407 | static objectContainsKeyValue(obj, key, value) { |
| 408 | const isMatch = (a, b) => (typeof a === 'string' && new RegExp(b).test(a)) || a === b; |
| 409 | const isKeyMatch = k => isMatch(k, key); |
| 410 | const isValueMatch = v => isMatch(v, value); |
| 411 | const stack = [obj]; |
| 412 | const seen = new WeakSet(); |
nothing calls this directly
no outgoing calls
no test coverage detected