Skip to content

Commit bee0c60

Browse files
committed
#if not FABLE_COMPILER_3
1 parent 99e5f5a commit bee0c60

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/FSharpPlus/Extensions/String.fs

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ module String =
5252

5353
source.Contains subString
5454

55+
#if !FABLE_COMPILER_3
5556
/// Does the source string start with the given subString? -- function wrapper for String.StartsWith method using InvariantCulture.
5657
let startsWith (subString: string) (source: string) =
5758
#if !NET45
@@ -60,6 +61,7 @@ module String =
6061
#endif
6162

6263
source.StartsWith (subString, false, CultureInfo.InvariantCulture)
64+
#endif
6365

6466
/// Does the source string end with the given subString? -- function wrapper for String.EndsWith method using InvariantCulture.
6567
let endsWith subString (source: string) =

0 commit comments

Comments
 (0)