File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
src/FSharpPlus/Extensions Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 33 "isRoot" : true ,
44 "tools" : {
55 "fable" : {
6- "version" : " 4.5 .0" ,
6+ "version" : " 4.23 .0" ,
77 "commands" : [
88 " fable"
99 ]
Original file line number Diff line number Diff line change @@ -42,15 +42,12 @@ module String =
4242
4343 source.Contains subString
4444
45- #if ! FABLE_ COMPILER
46-
4745 /// Does the source string start with the given subString? -- function wrapper for String.StartsWith method using InvariantCulture.
4846 let startsWith ( subString : string ) ( source : string ) =
4947 raiseIfNull ( nameof subString) subString
5048 raiseIfNull ( nameof source) source
5149
5250 source.StartsWith ( subString, false , CultureInfo.InvariantCulture)
53- #endif
5451
5552 /// Does the source string end with the given subString? -- function wrapper for String.EndsWith method using InvariantCulture.
5653 let endsWith subString ( source : string ) =
You can’t perform that action at this time.
0 commit comments