tracks/fsharp/generators/Common.fs in trackler-2.2.1.95 vs tracks/fsharp/generators/Common.fs in trackler-2.2.1.96
- old
+ new
@@ -84,9 +84,12 @@
let lowerCaseFirst (str: string) =
match str with
| "" -> str
| _ -> sprintf "%c%s" (Char.ToLower(str.[0])) str.[1..]
+ let replace (oldValue: string) (newValue: string) (str: string) =
+ str.Replace(oldValue, newValue)
+
module Json =
let rec parentsAndSelf (currentToken: JToken) =
let rec helper acc (token: JToken) =
match token with
| null -> acc
\ No newline at end of file