| 592 | * @returns {bool} |
| 593 | */ |
| 594 | export const getWaitUserInput = dialogNode => { |
| 595 | const waitUserInput = dialogNode?.waitUserInput |
| 596 | if (typeof waitUserInput === 'boolean') { |
| 597 | return waitUserInput |
| 598 | } |
| 599 | return true |
| 600 | } |
| 601 | |
| 602 | /** |
| 603 | * @param {DialogNode} dialogNode |
no outgoing calls
no test coverage detected