Skip to content

Instantly share code, notes, and snippets.

@luisgabriel
luisgabriel / foo-test.js
Created February 18, 2013 12:22
buster.js bug
var buster = require("buster");
function include(path) {
var fs = require("fs");
var vm = require("vm");
var code = fs.readFileSync(path, "utf-8");
vm.runInThisContext(code, path);
}
include("js/utils/object.js");