(prop: string, value: unknown)
| 213 | |
| 214 | const readKey = (prefix: string, name: string) => prefix ? prefix + _capitalize(name) : name; |
| 215 | const needsSubResolver = (prop: string, value: unknown) => isObject(value) && prop !== 'adapters' && |
| 216 | (Object.getPrototypeOf(value) === null || value.constructor === Object); |
| 217 | |
| 218 | function _cached( |
| 219 | target: AnyObject, |
no test coverage detected
searching dependent graphs…