Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created July 11, 2013 09:59
Show Gist options
  • Select an option

  • Save wrumsby/5974173 to your computer and use it in GitHub Desktop.

Select an option

Save wrumsby/5974173 to your computer and use it in GitHub Desktop.
CommonJS module definition
var $ = require('./dollar.js');
var Bolderiser = function () {
};
Bolderiser.prototype = {
embolden: function (id) {
var el = $.byId(id);
el.style.fontWeight = 'bold';
}
};
module.exports = Bolderiser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment