Added a function wrapper around all source files to keep JSHint happy

This commit is contained in:
Jeremy Ruston
2011-12-12 10:52:04 +00:00
parent 53d77edd01
commit f112048682
17 changed files with 89 additions and 27 deletions

View File

@@ -1,3 +1,5 @@
(function(){
/*jslint node: true */
"use strict";
@@ -24,6 +26,8 @@ var WikiTextProcessor = function(options) {
WikiTextProcessor.prototype.parse = function(text) {
return new WikiTextParser(text,this);
}
};
exports.WikiTextProcessor = WikiTextProcessor;
})();