2014-10-12 00:23:13 +11:00

11 lines
162 B
JavaScript

var obj = function (_ref) {
Object.defineProperties(_ref, {
foo: {
get: function () {
return 5 + 5;
}
}
});
return _ref;
}({});