[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
simkeu 07072025
/
keuangan
/
vendors
/
bower_components
/
bower
/
Source
/
Declare
/
[
Home
]
File: Registry.js
/* --- name: "Registry" description: "" license: - "[GNU Lesser General Public License](http://opensource.org/licenses/lgpl-license.php)" - "[MIT License](http://opensource.org/licenses/mit-license.php)" requires: - declare provides: Registry ... */ /** @class atom.Registry */ declare( 'atom.Registry', { items: {}, initialize: function (initial) { this.items = {}; if (initial) this.set(initial); }, set: atom.core.overloadSetter(function (name, value) { this.items[name] = value; }), get: atom.core.overloadGetter(function (name) { return this.items[name]; }) }); var Registry = atom.Registry;