2018-05-19 00:03:05 -04:00

8 lines
88 B
JavaScript

Object.create({}, {
foo: {
get: function(){
return super.foo;
}
}
});