(obj, prop)
| 57 | * @returns {*} The resolved value, or undefined when unsafe/absent |
| 58 | */ |
| 59 | const getSafeProp = (obj, prop) => |
| 60 | obj != null && hasOwnInPrototypeChain(obj, prop) ? obj[prop] : undefined; |
| 61 | |
| 62 | const kindOf = ((cache) => (thing) => { |
| 63 | const str = toString.call(thing); |
nothing calls this directly
no test coverage detected