Skip to content

Commit 211b929

Browse files
authored
Merge pull request #54 from csvistool/bugsFix
Comma and pipe inputs
2 parents aaeb4af + 204123d commit 211b929

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/algo/Algorithm.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,9 @@ export function controlKey(keyASCII) {
476476
keyASCII === 38 || // & ampersand
477477
keyASCII === 39 || // ' apostrophe
478478
keyASCII === 40 || // ( left parenthesis
479-
keyASCII === 46 // . period
479+
keyASCII === 46 || // . period
480+
keyASCII === 188 || // , commas
481+
keyASCII === 220 // | pipe
480482
);
481483
}
482484

0 commit comments

Comments
 (0)