UMD parsers: Regenerate lib/parser.js

Part of work on #362.
redux
David Majda 8 years ago
parent a0a57cd22d
commit fe6ce38d08

@ -51,6 +51,7 @@ parser:
rm -f $(PARSER_OUT_FILE)
echo '/* eslint-env node, amd */' >> $(PARSER_OUT_FILE)
echo '/* eslint no-unused-vars: 0 */' >> $(PARSER_OUT_FILE)
echo >> $(PARSER_OUT_FILE)
cat $(PARSER_OUT_FILE_NEW) >> $(PARSER_OUT_FILE)

@ -1,6 +1,13 @@
/* eslint-env node, amd */
/* eslint no-unused-vars: 0 */
module.exports = (function() {
(function(root, factory) {
if (typeof define === "function" && define.amd) {
define([], factory);
} else if (typeof module === "object" && module.exports) {
module.exports = factory();
}
})(this, function() {
"use strict";
/*
@ -4952,4 +4959,4 @@ module.exports = (function() {
SyntaxError: peg$SyntaxError,
parse: peg$parse
};
})();
});

Loading…
Cancel
Save