(
id: any,
properties: any,
graphs: any,
paths: any
)
| 366 | }; |
| 367 | |
| 368 | export function includeObservers( |
| 369 | id: any, |
| 370 | properties: any, |
| 371 | graphs: any, |
| 372 | paths: any |
| 373 | ): ICallback[] { |
| 374 | return flatten( |
| 375 | map( |
| 376 | propName => getCallbacksByInput(graphs, paths, id, propName), |
| 377 | keys(properties) |
| 378 | ) |
| 379 | ); |
| 380 | } |
| 381 | |
| 382 | /* |
| 383 | * Create a pending callback object. Includes the original callback definition, |
no test coverage detected
searching dependent graphs…