UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

13 lines (11 loc) • 283 B
'use strict'; module.exports = function dataProperties(klass, properties) { properties.forEach(p => { Object.defineProperty(klass.prototype, p, { enumerable: true, get() { return this.data[p]; } }); }); };