Removed some debug logging

This commit is contained in:
j433866 2019-01-14 13:49:49 +00:00
parent 1a88a0164c
commit b3ac8d0835
2 changed files with 2 additions and 7 deletions

View file

@ -249,7 +249,6 @@ export function findFormat (input, delim) {
const filteredInput = input.replace(/[^A-Za-z0-9]/, "").toUpperCase();
const mgrsPattern = new RegExp(/^[0-9]{2}[C-HJ-NP-X]{2}[A-Z]+/);
const geohashPattern = new RegExp(/^[0123456789BCDEFGHJKMNPQRSTUVWXYZ]+$/);
log.error(filteredInput);
if (mgrsPattern.test(filteredInput)) {
return "Military Grid Reference System";
} else if (geohashPattern.test(filteredInput)) {