Function lo.SnakeCase always adds underscore before digits, for example:
str := lo.SnakeCase("Text1")
// text_1
Is it supposed behavior? I used a different library, and it didn't add an underscore in such case (i.e. it'd return text1 in the above example).
Function
lo.SnakeCasealways adds underscore before digits, for example:Is it supposed behavior? I used a different library, and it didn't add an underscore in such case (i.e. it'd return
text1in the above example).