Parse a text to replace placeholders with values.
the text to parse
the parsed text
parseText("Hello, {name}!");// => "Hello, name!" Copy
parseText("Hello, {name}!");// => "Hello, name!"
// With arguments inside the placeholdersparseText("The year is {date:YYYY");// => "The year is 2024" Copy
// With arguments inside the placeholdersparseText("The year is {date:YYYY");// => "The year is 2024"
0.4.0
Parse a text to replace placeholders with values.