Server model: NodeJS
Wappler 5.8.2

Some text formatters are adding additional whitespaces in to string, some not working as documented.
I’m kindly asking Wappler team to review those text formatting functionality.
Server model: NodeJS
Wappler 5.8.2
Some text formatters are adding additional whitespaces in to string, some not working as documented.
I’m kindly asking Wappler team to review those text formatting functionality.
I think in this special case the description was not updated after a previous change.
If there are more issues with formatters where it doesn’t do what the description mentioned, please let us know.
To be honest I didn’t get your message. It’s not about formatter description is about that they doesn’t work as documented.
Well… OK guys, I’ll invest my time to make your product better.
.capitalize()
is not working
.humanize()
is not working as expected.Original string DMXZoneServerConnect
Returns D mxzone server connect
instead of Dmxzone server connect
.titlecase()
is not working
I also think it’s the formatters description/help text in the UI that is wrong making you think they don’t work.
Here’s what the capitalize, humanize and titlecase formatters do:
capitalize:
('hello world').capitalize()
returns 'Hello world'
humanize:
('example_text').humanize()
returns 'Example text'
titlecase:
('hello world example').titlecase()
returns 'Hello World Example'