UNPKG

silentjs

Version:
11 lines (8 loc) 203 B
var Generic = function () { }; Generic.prototype.get = function (attr) { return this[attr]; }; Generic.prototype.set = function (attr, value) { this[attr] = value; }; module.exports = Generic;