UNPKG

jh-common-dataaccess

Version:
10 lines (8 loc) 326 B
const EmtityClass = require('./EmtityClass'); module.exports = class DsParams extends EmtityClass { constructor() { super(arguments[0], ['paramsname', 'paramsvalue']); this.paramsname = this.paramsname || ''; this.paramsvalue = typeof this.paramsvalue === 'string' ? (this.paramsvalue || '') : this.paramsvalue; } };