MCPcopy Create free account
hub / github.com/Snapchat/Valdi / stripBOM

Function stripBOM

valdi/vscode_debugger/src/targets/node/nodeLauncherBase.ts:481–486  ·  view source on GitHub ↗
(s: string)

Source from the content-addressed store, hash-verified

479}
480
481function stripBOM(s: string): string {
482 if (s && s[0] === '\uFEFF') {
483 s = s.substr(1);
484 }
485 return s;
486}

Callers 1

readEnvFileFunction · 0.70

Calls 1

substrMethod · 0.80

Tested by

no test coverage detected