UNPKG

acha-framework

Version:

is a modular framework on both client (angular.js) and server (node.js) side, it provides security, orm, ioc, obfuscation and ...

13 lines 325 B
(function (undefined) { Ioc.define('backend.configuration', [], function (provide) { const configuration = { $set: function (value) { const self = this; Object.keys(value).forEach(function (key) { self[key] = value[key]; }); } }; provide(configuration); }); }());