aurelia-plugins-addthis
Version:
An AddThis plugin for Aurelia.
28 lines (23 loc) • 414 B
JavaScript
// PUBLIC CLASS
export class Config {
// PRIVATE PROPERTIES
_config;
// CONSTRUCTOR
constructor() {
this._config = { lang: 'en', pubid: '' };
}
// PUBLIC METHODS
all() {
return this._config;
}
get(key) {
return this._config[key];
}
options(obj) {
Object.assign(this._config, obj);
}
set(key, value) {
this._config[key] = value;
return this._config[key];
}
}