mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-28 05:26:10 +02:00
Fix various minor mistakes
This commit is contained in:
parent
351ae52776
commit
c9ff904b2b
7 changed files with 17 additions and 18 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue