smooth-scrollbar
Version:
Customize scrollbar in modern browsers with smooth scrolling experience.
19 lines • 513 B
JavaScript
export function boolean(proto, key) {
var alias = "_" + key;
Object.defineProperty(proto, key, {
get: function () {
return this[alias];
},
set: function (val) {
Object.defineProperty(this, alias, {
value: !!val,
enumerable: false,
writable: true,
configurable: true,
});
},
enumerable: true,
configurable: true,
});
}
//# sourceMappingURL=boolean.js.map