aboutsummaryrefslogtreecommitdiff
path: root/node_modules/istanbul-lib-coverage/lib/data-properties.js
blob: 3a12d40e9ea256c6cf258e0640d4d42831c8a110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

module.exports = function dataProperties(klass, properties) {
    properties.forEach(p => {
        Object.defineProperty(klass.prototype, p, {
            enumerable: true,
            get() {
                return this.data[p];
            }
        });
    });
};