mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
1440e8c55d
* BTCPay Server Extensions ![demo](https://i.imgur.com/2S00aL2.gif) * cleanup * fix * Polish UI a bit,detect when docker deployment
19 lines
516 B
C#
19 lines
516 B
C#
using System;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static string TrimEnd(this string input, string suffixToRemove,
|
|
StringComparison comparisonType)
|
|
{
|
|
if (input != null && suffixToRemove != null
|
|
&& input.EndsWith(suffixToRemove, comparisonType))
|
|
{
|
|
return input.Substring(0, input.Length - suffixToRemove.Length);
|
|
}
|
|
else return input;
|
|
}
|
|
}
|
|
}
|