Fix various minor mistakes

This commit is contained in:
Bryan Ashby 2019-11-08 19:20:14 -07:00
parent 351ae52776
commit c9ff904b2b
No known key found for this signature in database
GPG key ID: B49EB437951D2542
7 changed files with 17 additions and 18 deletions

View file

@ -29,9 +29,11 @@ exports.isAnsiLine = isAnsiLine;
exports.isFormattedLine = isFormattedLine;
exports.splitTextAtTerms = splitTextAtTerms;
// :TODO: create Unicode verison of this
const VOWELS = [ 'a', 'e', 'i', 'o', 'u' ];
VOWELS.concat(VOWELS.map(l => l.toUpperCase()));
// :TODO: create Unicode version of this
const VOWELS = [
'a', 'e', 'i', 'o', 'u',
'A', 'E', 'I', 'O', 'U',
];
const SIMPLE_ELITE_MAP = {
'a' : '4',