UNPKG
krispy
Version:
latest (2.0.0)
2.0.0
1.0.0
Basic synchronous dependency injector
github.com/arcticzeroo/krispy
arcticzeroo/krispy
krispy
/
dist
/
lib
/
decorators.js
7 lines
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
function
inject
(
...items
) {
return
(
Class
) =>
{
return
new
Class
(items.
map
()); }; }
//# sourceMappingURL=decorators.js.map