Working on supporting markdown links in serverless+web

For #101203
This commit is contained in:
Matt Bierner
2020-07-09 19:46:16 -07:00
parent 362d345448
commit fdf23dc5f9
12 changed files with 159 additions and 69 deletions

View File

@@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as os from 'os';
export const joinLines = (...args: string[]) =>
args.join(os.platform() === 'win32' ? '\r\n' : '\n');