Sha256: 3e1adebd8d5954792bd6d16473d9618a65d3a43d5e194fae8bb582ed7812e498
Contents?: true
Size: 480 Bytes
Versions: 15
Compression:
Stored size: 480 Bytes
Contents
((exports) => { class Configuration { constructor() { this.config = {}; } set(key, value = null) { if (typeof key === "object") { this.config = { ...this.config, ...key }; } else { this.config[key] = value; } } get(key) { return this.config[key]; } } exports.Decidim = exports.Decidim || {}; exports.Decidim.Configuration = Configuration; exports.Decidim.config = new Configuration(); })(window);
Version data entries
15 entries across 15 versions & 1 rubygems