@microsoft/compose-language-service
Version:
Language service for Docker Compose documents
11 lines • 574 B
JavaScript
/*!--------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export function yamlRangeToLspRange(document, yamlRange) {
return {
start: document.positionAt(yamlRange[0]),
end: document.positionAt(yamlRange[1]),
};
}
//# sourceMappingURL=yamlRangeToLspRange.js.map