MCPcopy
hub / github.com/VSCodeVim/Vim / isLowSurrogate

Function isLowSurrogate

src/util/util.ts:47–49  ·  view source on GitHub ↗
(charCode: number)

Source from the content-addressed store, hash-verified

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

Callers 5

getLeftWhileMethod · 0.90
getRightWhileMethod · 0.90
runMethod · 0.90
runMethod · 0.90
execMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected