Skip to content

Instantly share code, notes, and snippets.

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

Nick Baynham NickBaynham

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