/**
 * Split a string into an array of characters
 *
 * @param input The string
 * @returns array of characters
 */
export function splitChars(input: string): string[] {
    return Array.from(input);
}

export default splitChars;
