| 5 | import path from "path"; |
| 6 | |
| 7 | interface Options { |
| 8 | goto?: boolean; |
| 9 | rightEditor?: boolean; |
| 10 | textarea?: boolean; |
| 11 | needTutorial?: boolean; |
| 12 | } |
| 13 | |
| 14 | function getEditorId(rightEditor?: boolean) { |
| 15 | return `#${rightEditor ? "right" : "left"}-panel`; |
nothing calls this directly
no outgoing calls
no test coverage detected