UNPKG

@technobuddha/library

Version:
15 lines (14 loc) 346 B
"use strict"; 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;