This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function startUpSequenceVariants(input: Record<string, string[]>): string[][] { | |
| const result: string[][] = []; | |
| const fulfilledDependencies = new Set<string>(); | |
| const inputKeys = Object.keys(input); | |
| function isDependenciesFulfilled(current?: string): boolean { | |
| const dependencies = input[current]; | |
| if (dependencies.length === 0) { | |
| return true; |