(charCode: number)
| 45 | } |
| 46 | |
| 47 | export function isLowSurrogate(charCode: number): boolean { |
| 48 | return 0xdc00 <= charCode && charCode <= 0xdfff; |
| 49 | } |
| 50 | |
| 51 | export function findTabInActiveTabGroup(name: string): [number, vscode.Tab] { |
| 52 | const foundBuffers: Array<[number, vscode.Tab]> = []; |
no outgoing calls
no test coverage detected