Skip to content

Commit f910c12

Browse files
committed
remove scope
1 parent 7959669 commit f910c12

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

parser.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
to acknowledge its original source. If you feel like it, I enjoy hearing about projects that use my code,
99
but don't feel like you have to let me know or ask permission.
1010
*/
11-
var Parser = (function (scope) {
11+
var Parser = (function () {
1212
function object(o) {
1313
function F() {}
1414
F.prototype = o;
@@ -1056,6 +1056,5 @@ var Parser = (function (scope) {
10561056
}
10571057
};
10581058

1059-
scope.Parser = Parser;
1060-
return Parser
1061-
})(typeof exports === 'undefined' ? {} : exports);
1059+
return Parser;
1060+
})();

0 commit comments

Comments
 (0)