mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
15 lines
700 B
TypeScript
15 lines
700 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { URI } from 'vs/base/common/uri';
|
|
|
|
export function getPathFromAmdModule(requirefn: typeof require, relativePath: string): string {
|
|
return getUriFromAmdModule(requirefn, relativePath).fsPath;
|
|
}
|
|
|
|
export function getUriFromAmdModule(requirefn: typeof require, relativePath: string): URI {
|
|
return URI.parse(requirefn.toUrl(relativePath));
|
|
}
|