Version: v0.7.1 - Beta.  We welcome contributors & feedback.

String.splitChars

splitChars() -> list

Description

Get all of the characters as a List.

'ab cd'.splitChars()
//= ['a', 'b', ' ', 'c', 'd']

See Also