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,6 +1,6 @@
var obj = function (obj) {
obj[foobar] = function () {
var obj = function (_ref) {
_ref[foobar] = function () {
return "foobar";
};
return obj;
return _ref;
}({});