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
Container is able to inject the deps to the class objects. Would be nice if it could do the same for the functions.
e.g.
constfn=(dep1,dep2)=>()=>{// doo something}constselfwired=inject(fn,['dep1','dep2'])// the binding should resolve a closure with injected dependencies.
The text was updated successfully, but these errors were encountered:
Container is able to inject the deps to the class objects. Would be nice if it could do the same for the functions.
e.g.
The text was updated successfully, but these errors were encountered: