Files

7 lines
217 B
JavaScript
Raw Permalink Normal View History

2025-01-04 00:34:03 +01:00
"use strict";
function splitTextToCharacters(text) {
return Array.from ? Array.from(text) : text.split("");
}
exports.splitTextToCharacters = splitTextToCharacters;
//# sourceMappingURL=splitTextToCharacters.js.map