LuaIsWordChar returns true if the first rune in a string is a word character
(s string)
| 36 | |
| 37 | // LuaIsWordChar returns true if the first rune in a string is a word character |
| 38 | func LuaIsWordChar(s string) bool { |
| 39 | r, _, _ := DecodeCharacterInString(s) |
| 40 | return IsWordChar(r) |
| 41 | } |
nothing calls this directly
no test coverage detected