9 lines
128 B
JavaScript

"use strict";
var obj = (function () {
var _obj = {};
_obj.first = "first";
_obj.second = "second";
return _obj;
})();