UNPKG
tao-js
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
Aspect-oriented middleware for async/await and JS
github.com/vkarpov15/tao
vkarpov15/tao
tao-js
/
index.js
11 lines
(7 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
const
Library
=
require
(
'./lib/Library'
);
module
.
exports
=
_lib
=>
function
applyParamsAndMiddleware
(
) {
return
new
Library
(_lib,
arguments
); };
module
.
exports
.
Action
=
require
(
'./lib/Action'
);
module
.
exports
.
Library
=
Library
;