13 lines
283 B
JavaScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
'use strict';
module.exports = function dataProperties(klass, properties) {
properties.forEach(p => {
Object.defineProperty(klass.prototype, p, {
enumerable: true,
get() {
return this.data[p];
}
});
});
};