MCPcopy Index your code
hub / github.com/CoderLine/alphaTab / injectQuery

Function injectQuery

packages/vite/src/bridge/utils.ts:94–97  ·  view source on GitHub ↗
(builtUrl: string, query: string)

Source from the content-addressed store, hash-verified

92 * @internal
93 */
94export function injectQuery(builtUrl: string, query: string): string {
95 const queryIndex = builtUrl.indexOf('?');
96 return builtUrl + (queryIndex === -1 ? '?' : '&') + query;
97}
98
99// https://github.com/vitejs/vite/blob/b7ddfae5f852c2948fab03e94751ce56f5f31ce0/packages/vite/src/node/utils.ts#L1435
100/**

Callers 1

transformFunction · 0.90

Calls 1

indexOfMethod · 0.45

Tested by

no test coverage detected