mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
11 lines
214 B
C#
11 lines
214 B
C#
namespace UglyToad.PdfPig.Tests
|
|
{
|
|
using System;
|
|
|
|
public static class TestEnvironment
|
|
{
|
|
public static bool IsSingleByteNewLine(string s) => s.IndexOf('\r') < 0;
|
|
|
|
}
|
|
}
|