change obj references to a unique identifier

This commit is contained in:
Sebastian McKenzie
2014-10-12 00:23:13 +11:00
parent 4c2e7ddb9e
commit 0f7da020e3
16 changed files with 48 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
var obj = function (obj) {
obj["x" + foo] = "heh";
obj["y" + bar] = "noo";
return obj;
var obj = function (_ref) {
_ref["x" + foo] = "heh";
_ref["y" + bar] = "noo";
return _ref;
}({});