(name)
| 1 | (function () { |
| 2 | |
| 3 | function parse(name) { |
| 4 | var parts = name.split('?'), |
| 5 | index = parseInt(parts[0], 10), |
| 6 | choices = parts[1].split(':'), |
| 7 | choice = choices[index]; |
| 8 | |
| 9 | return { |
| 10 | index: index, |
| 11 | choices: choices, |
| 12 | choice: choice |
| 13 | }; |
| 14 | } |
| 15 | |
| 16 | define({ |
| 17 | pluginBuilder: './indexBuilder', |
no outgoing calls
no test coverage detected
searching dependent graphs…