(size)
| 768 | } |
| 769 | |
| 770 | function randomShell(size) { |
| 771 | // Special selection for codepen header. |
| 772 | if (IS_HEADER) return randomFastShell()(size); |
| 773 | // Normal operation |
| 774 | return shellTypes[randomShellName()](size); |
| 775 | } |
| 776 | |
| 777 | function shellFromConfig(size) { |
| 778 | return shellTypes[shellNameSelector()](size); |
nothing calls this directly
no test coverage detected