(obj: any)
| 23 | type PatchHandler = (previous: any, patchUpdate: PatchOperation) => any; |
| 24 | |
| 25 | export function isPatch(obj: any): boolean { |
| 26 | return has('__dash_patch_update', obj); |
| 27 | } |
| 28 | |
| 29 | function getLocationIndex(value: LocationIndex, previous: any) { |
| 30 | if (is(Number, value) && value < 0) { |
no test coverage detected
searching dependent graphs…