// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable namespace Microsoft.SqlTools.ServiceLayer.Test.Common.Extensions { public static class StringExtensions { /// /// Normalizes line endings, replacing all \r\n with \n. /// /// The string /// The string with all line endings normalized public static string NormalizeLineEndings(this string str) { return str.Replace("\r\n", "\n"); } } }