We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e5f5a commit bee0c60Copy full SHA for bee0c60
src/FSharpPlus/Extensions/String.fs
@@ -52,6 +52,7 @@ module String =
52
53
source.Contains subString
54
55
+ #if !FABLE_COMPILER_3
56
/// Does the source string start with the given subString? -- function wrapper for String.StartsWith method using InvariantCulture.
57
let startsWith (subString: string) (source: string) =
58
#if !NET45
@@ -60,6 +61,7 @@ module String =
60
61
#endif
62
63
source.StartsWith (subString, false, CultureInfo.InvariantCulture)
64
+ #endif
65
66
/// Does the source string end with the given subString? -- function wrapper for String.EndsWith method using InvariantCulture.
67
let endsWith subString (source: string) =
0 commit comments