@technobuddha/library
Version:
A large library of useful functions
15 lines (14 loc) • 346 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.splitChars = void 0;
/**
* Split a string into an array of characters
*
* @param input The string
* @returns array of characters
*/
function splitChars(input) {
return Array.from(input);
}
exports.splitChars = splitChars;
exports.default = splitChars;