From 9e35cdeacae867b512a0c96b08d7aeeae2e47226 Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 29 Oct 2024 17:03:10 +0100 Subject: [PATCH 1/2] Removed String.startsWith FABLE_COMPILER condition --- src/FSharpPlus/Extensions/String.fs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/FSharpPlus/Extensions/String.fs b/src/FSharpPlus/Extensions/String.fs index 9fbce7015..270711026 100644 --- a/src/FSharpPlus/Extensions/String.fs +++ b/src/FSharpPlus/Extensions/String.fs @@ -42,15 +42,12 @@ module String = source.Contains subString - #if !FABLE_COMPILER - /// Does the source string start with the given subString? -- function wrapper for String.StartsWith method using InvariantCulture. let startsWith (subString: string) (source: string) = raiseIfNull (nameof subString) subString raiseIfNull (nameof source) source source.StartsWith (subString, false, CultureInfo.InvariantCulture) - #endif /// Does the source string end with the given subString? -- function wrapper for String.EndsWith method using InvariantCulture. let endsWith subString (source: string) = From a5edf147fbe0424c3f05cc4d1818799a9b275095 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 30 Oct 2024 13:20:43 +0100 Subject: [PATCH 2/2] Fable updated to 4.23.0 --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 824d99e3e..681a9e801 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fable": { - "version": "4.5.0", + "version": "4.23.0", "commands": [ "fable" ]