-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Splits input text into an array of characters.
toChars(); // => []
toChars(''); // => []
toChars(null); // => []
toChars('Hello world'); // => [ "H", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d" ]
toChars(1) // => ['1']
toChars(2e5) // => ["2", "0", "0", "0", "0", "0"]Aliases
import toChars from '@plexis/to-chars';
import {toChars, chars} from 'plexis';Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers