2014-10-25 09:09:55 +11:00

17 lines
240 B
JavaScript

"use strict";
var Test = function() {
var Test = function Test() {};
Object.defineProperties(Test.prototype, {
test: {
writable: true,
value: function() {
return 5 + 5;
}
}
});
return Test;
}();