UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

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]; } }); }); };