(id: string)
| 24 | import { mapValues } from './utils.ts'; |
| 25 | |
| 26 | export function sanitizeStateId(id: string) { |
| 27 | return id.replace(/\./g, '$'); |
| 28 | } |
| 29 | |
| 30 | function appendWildcards(state: AnyStateNode) { |
| 31 | const newTransitions: typeof state.transitions = new Map(); |
no outgoing calls
searching dependent graphs…