Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created January 5, 2015 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmcw/1e32183be40dda6b38da to your computer and use it in GitHub Desktop.
Save tmcw/1e32183be40dda6b38da to your computer and use it in GitHub Desktop.
/**
* Shirt module.
* @module shirt
*/
/** Button the shirt. */
exports.button = function() {
// ...
};
/** Unbutton the shirt. */
exports.unbutton = function() {
// ...
};
module.exports = require('./shirt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment