()
| 1 | import store from 'store'; |
| 2 | |
| 3 | export function getScrollbarWidth(): number { |
| 4 | const storedWidth = store.get('monacoScrollbarWidth') as number; |
| 5 | return storedWidth >= 5 || storedWidth <= 25 ? storedWidth : 5; |
| 6 | } |
no outgoing calls
no test coverage detected