/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45/*6* This module exists so that the AMD build of the monaco editor can replace this with an async loader plugin.7* If you add new functions to this module make sure that they are also provided in the AMD build of the monaco editor.8*9* TODO@esm remove me once we no longer ship an AMD build.10*/1112export function getNLSMessages(): string[] {13return globalThis._VSCODE_NLS_MESSAGES;14}1516export function getNLSLanguage(): string | undefined {17return globalThis._VSCODE_NLS_LANGUAGE;18}192021