Last active
February 22, 2019 11:55
-
-
Save AchrafKassioui/f7843c7a15786f158a141d217c2314e5 to your computer and use it in GitHub Desktop.
Boilerplate for JavaScript plugin with constructor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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