Always tag as ADR if pattern matches

Change-Id: I7f8636eb3d9e8b03fad2e8747d50d4cb208bfc43
diff --git a/src/index.js b/src/index.js
index 0c3faf1..148ff52 100755
--- a/src/index.js
+++ b/src/index.js
@@ -147,7 +147,7 @@
     new_tag = 'URL';
   } else if (word.match(emailRegex)) {
     new_tag = 'EML';
-  } else if (!columns[3].match("^(NE|PROPN)") && word.match(addressRegex)) {
+  } else if (word.match(addressRegex)) {
     new_tag = 'ADR';
   }
   if (new_tag) {