(input)
| 27 | }); |
| 28 | |
| 29 | function getInput(input) { |
| 30 | switch (input) { |
| 31 | case 'group_common': |
| 32 | return groupedInputs.group_common; |
| 33 | case 'group_upper': |
| 34 | return groupedInputs.group_upper; |
| 35 | case 'group_uncommon': |
| 36 | return groupedInputs.group_uncommon; |
| 37 | case 'group_misc': |
| 38 | return groupedInputs.group_misc; |
| 39 | case 'undefined': |
| 40 | return [undefined]; |
| 41 | default: |
| 42 | return [input]; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | function main({ input, n }) { |
| 47 | const { normalizeEncoding } = require('internal/util'); |
no outgoing calls
no test coverage detected
searching dependent graphs…