coworking-space
Version:
Joke package that just prints coworking spaces in San Antonio
18 lines (16 loc) • 454 B
JavaScript
function coworkingSpace() {
// List of coworking spaces in San Antonio
return [
"Geekdom",
"Venture X San Antonio Northwest",
"Impact Guild",
"Regus - San Antonio",
"The Workery",
"Executive Workspace - San Antonio",
"Cubico",
"Common Desk - San Antonio",
"Spaces - San Antonio - West Sunset",
"The Cherrity Bar Coworking"
];
}
module.exports = coworkingSpace;