2020-12-20 08:36:11 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.ModelsBuilder.Embedded;
|
|
|
|
|
|
|
|
|
|
public static class StringExtensions
|
2019-10-28 18:02:52 +11:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
public static string ClearLf(this string s) => s.Replace("\r", string.Empty);
|
2019-10-28 18:02:52 +11:00
|
|
|
}
|