UNPKG

@technobuddha/library

Version:
11 lines (10 loc) 211 B
/** * Split a string into an array of characters * * @param input The string * @returns array of characters */ export function splitChars(input) { return Array.from(input); } export default splitChars;