You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another idea that could come in handy for a modular application:
Making the container aware of subcontainers registered inside via dotted namespaces.
Example:
vardi=newEinigeln();varsubDi=newEinigeln();subDi.set('hello','world');di.set('foo',subDi);console.log(di.get('sub.hello'));// Will output 'world'di.set('foo.bar','baz');console.log(subDi.get('baz'));// Will output 'baz'
The text was updated successfully, but these errors were encountered:
Another idea that could come in handy for a modular application:
Making the container aware of subcontainers registered inside via dotted namespaces.
Example:
The text was updated successfully, but these errors were encountered: