src/peg.js: Prevent redefinition of |undefined| differently
Fixes the following JSHint error: ./src/peg.js: line 5, col 5, Expected an identifier and instead saw 'undefined' (a reserved word).
This commit is contained in:
parent
10cca7b69d
commit
2f671e0022
|
@ -1,8 +1,6 @@
|
||||||
/* PEG.js @VERSION (http://pegjs.majda.cz/) */
|
/* PEG.js @VERSION (http://pegjs.majda.cz/) */
|
||||||
|
|
||||||
(function() {
|
(function(undefined) {
|
||||||
|
|
||||||
var undefined;
|
|
||||||
|
|
||||||
var PEG = {
|
var PEG = {
|
||||||
/* PEG.js version. */
|
/* PEG.js version. */
|
||||||
|
|
Loading…
Reference in a new issue