You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks, I wasn't aware of this.
So far every page I check for "convert to camelCase" is not behaving like that.
But you're absolutely right; searching a bit more (sorry I should have seen this earlier) I see this:
If your field name contains a number, the number should appear after the letter instead of after the underscore. For example, use song_name1 instead of song_name_1
alright, thanks again. nothing to fix here. sorry for the confusion.
protobuf.js version: 7.2.0
A similar issue was raised #714 but the difference here is having just a number after the underscore.
camelCase('testing_1') -> 'testing1' (expected)
camelCase('testing_1') -> 'testing_1' (actual)
copy this snippet into Chrome dev tools:
Then evaluate:
I believe the regular expression should be instead:
The text was updated successfully, but these errors were encountered: