(target, source)
| 268 | } |
| 269 | |
| 270 | function bindDefaultResolver(target, source) { |
| 271 | const defaultResolver = getDefaultResolver(); |
| 272 | ArrayPrototypeForEach(resolverKeys, (key) => { |
| 273 | target[key] = FunctionPrototypeBind(source[key], defaultResolver); |
| 274 | }); |
| 275 | } |
| 276 | |
| 277 | function validateHints(hints) { |
| 278 | const { AI_ADDRCONFIG, AI_ALL, AI_V4MAPPED } = lazyBinding(); |
no test coverage detected
searching dependent graphs…