UNPKG

@technobuddha/library

Version:
12 lines (10 loc) 230 B
/** * 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;