* Determines if a given command has an `outlets` map. When we encounter a command * with an outlets k/v map, we need to apply each outlet individually to the existing segment.
(command: any)
| 156 | * with an outlets k/v map, we need to apply each outlet individually to the existing segment. |
| 157 | */ |
| 158 | function isCommandWithOutlets(command: any): command is {outlets: {[key: string]: any}} { |
| 159 | return typeof command === 'object' && command != null && command.outlets; |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Normalizes a query parameter value by using the `UrlSerializer` to serialize then parse the value. |
no outgoing calls
no test coverage detected
searching dependent graphs…