Skip to content

Instantly share code, notes, and snippets.

View NickBaynham's full-sized avatar
:octocat:
Learning Github Actions

NickBaynham NickBaynham

:octocat:
Learning Github Actions
  • Macon, Georgia
  • 22:40 (UTC -12:00)
View GitHub Profile
let zipCode = (code, location) => {
let _code = code;
let _location = location || '';
return {
code: () => {
return _code;
},
location: () => {
return _location;
}