Make PEG global explicit in helpers

This commit is contained in:
Arlo Breault 2015-06-08 11:59:10 -07:00
parent f4d2357609
commit 1a32ae7bd0

View file

@ -1,3 +1,5 @@
if (typeof module !== "undefined") {
PEG = require("../lib/peg.js");
}
(function(root) {
if (typeof module !== 'undefined') {
root.PEG = require("../lib/peg.js");
}
}(this));