File tree 2 files changed +1
-4
lines changed
src/FSharpPlus/Extensions
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 3
3
"isRoot" : true ,
4
4
"tools" : {
5
5
"fable" : {
6
- "version" : " 4.5 .0" ,
6
+ "version" : " 4.23 .0" ,
7
7
"commands" : [
8
8
" fable"
9
9
]
Original file line number Diff line number Diff line change @@ -42,15 +42,12 @@ module String =
42
42
43
43
source.Contains subString
44
44
45
- #if ! FABLE_ COMPILER
46
-
47
45
/// Does the source string start with the given subString? -- function wrapper for String.StartsWith method using InvariantCulture.
48
46
let startsWith ( subString : string ) ( source : string ) =
49
47
raiseIfNull ( nameof subString) subString
50
48
raiseIfNull ( nameof source) source
51
49
52
50
source.StartsWith ( subString, false , CultureInfo.InvariantCulture)
53
- #endif
54
51
55
52
/// Does the source string end with the given subString? -- function wrapper for String.EndsWith method using InvariantCulture.
56
53
let endsWith subString ( source : string ) =
You can’t perform that action at this time.
0 commit comments