Skip to content

Instantly share code, notes, and snippets.

@AchrafKassioui
Last active February 22, 2019 11:55
Show Gist options
  • Save AchrafKassioui/f7843c7a15786f158a141d217c2314e5 to your computer and use it in GitHub Desktop.
Save AchrafKassioui/f7843c7a15786f158a141d217c2314e5 to your computer and use it in GitHub Desktop.
Boilerplate for JavaScript plugin with constructor
// Based on https://raw.githubusercontent.com/mozilla/readability/master/Readability.js
function Constructor(options) {
}
Constructor.prototype = {
};
if (typeof module === "object") {
module.exports = Constructor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment