Takes all strings from the input and outputs them as single characters
pipe( itr8FromArray([ 'hello', 'world' ]), stringToChar(), // => [ 'h', 'e', 'l', 'l', 'o', 'w', 'o', 'r', 'l', 'd' ] );
Generated using TypeDoc
Takes all strings from the input and outputs them as single characters
Example