(a: any, b: any)
| 232 | Array.isArray(input) ? pluck('value', input) : input.value; |
| 233 | |
| 234 | const zipIfArray = (a: any, b: any) => { |
| 235 | if (Array.isArray(a)) { |
| 236 | // For client-side callbacks with multiple Outputs, only return a single dash_clientside.no_update |
| 237 | if (b === (window as any).dash_clientside.no_update) { |
| 238 | return zip(a, [b]); |
| 239 | } |
| 240 | return zip(a, b); |
| 241 | } |
| 242 | return [[a, b]]; |
| 243 | }; |
| 244 | |
| 245 | function cleanOutputProp(property: string) { |
| 246 | return property.split('@')[0]; |
no outgoing calls
no test coverage detected
searching dependent graphs…