ahomu 9f267e54a9 fix typo writable
s/writeable/writable
2014-10-13 17:18:56 +09:00

13 lines
226 B
JavaScript

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