rename variable so it can work with node v0.6.1

This commit is contained in:
eleith 2011-11-14 17:02:16 -08:00
parent 2f37b7c68f
commit 136fd17e84
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
var schema = require("./lib/schema.js");
Object.keys(schema).forEach(function(export)
Object.keys(schema).forEach(function(one)
{
exports[export] = schema[export];
exports[one] = schema[one];
});