mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
'use strict';
|
|
|
|
module.exports = function dataProperties(klass, properties) {
|
|
properties.forEach(p => {
|
|
Object.defineProperty(klass.prototype, p, {
|
|
enumerable: true,
|
|
get() {
|
|
return this.data[p];
|
|
}
|
|
});
|
|
});
|
|
};
|