Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Last active December 19, 2015 14:49
Show Gist options
  • Select an option

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

Select an option

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