Created by: aglundahl
Add a missing "var" declaration to the Underscore.js reference. Without it, "_" is added to the global object, causing unexpected errors.
Reproduce the problem, at the REPL:
var s = require("./lib/sweet"); process.nextTick(function () { s.compile("var foo = 1;"); });
This will throw the exception "TypeError: Cannot call method 'isArray' of undefined", since the globally available "_" at some point becomes undefined.