mirror of
https://github.com/neocities/neocities.git
synced 2025-04-29 11:37:59 +02:00
14 lines
752 B
JavaScript
14 lines
752 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
/*
|
|
* This module exists so that the AMD build of the monaco editor can replace this with an async loader plugin.
|
|
* If you add new functions to this module make sure that they are also provided in the AMD build of the monaco editor.
|
|
*/
|
|
export function getNLSMessages() {
|
|
return globalThis._VSCODE_NLS_MESSAGES;
|
|
}
|
|
export function getNLSLanguage() {
|
|
return globalThis._VSCODE_NLS_LANGUAGE;
|
|
}
|