(target: Object, prop: PropertyKey)
| 206 | } |
| 207 | |
| 208 | export function hasProp(target: Object, prop: PropertyKey): boolean { |
| 209 | return objectPrototype.hasOwnProperty.call(target, prop) |
| 210 | } |
| 211 | |
| 212 | // From Immer utils |
| 213 | export const getOwnPropertyDescriptors = |
no outgoing calls
no test coverage detected
searching dependent graphs…