Files

13 lines
283 B
JavaScript
Raw Permalink Normal View History

2026-03-14 20:41:55 +00:00
'use strict';
module.exports = function dataProperties(klass, properties) {
properties.forEach(p => {
Object.defineProperty(klass.prototype, p, {
enumerable: true,
get() {
return this.data[p];
}
});
});
};