From b4523a808b2d713997f4cef099d9eea513c2f211 Mon Sep 17 00:00:00 2001 From: Dawson Godin <33760026+DawsonGodin@users.noreply.github.com> Date: Fri, 15 Jan 2021 23:07:47 -0800 Subject: [PATCH] Add getPostal export --- cl.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cl.lua b/cl.lua index 7c4de40..789ffc2 100644 --- a/cl.lua +++ b/cl.lua @@ -196,3 +196,5 @@ if dev then end ) end + +exports('getPostal', function() if nearest ~= nil then return postals[nearest.i].code else return nil end end)