From c7fb971e9ce0cccff409f1209a0533027401c81a Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 26 Jul 2022 17:16:11 -0700 Subject: [PATCH] If zipcode is not found, we now return null. --- Zip2LatLng.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Zip2LatLng.js b/Zip2LatLng.js index 2ec1bec..9654c59 100644 --- a/Zip2LatLng.js +++ b/Zip2LatLng.js @@ -61506,6 +61506,10 @@ var z = [ class Zip2LatLng { static geocode(zip) { var r = z[zip]; + + if (!r) + return null; + return { lat: r[0] / 100000, lng: (r[1] / 100000) * -1,