UNPKG
csf
Version:
beta (0.1.0-alpha.4)
latest (0.1.0-alpha.3)
0.1.0-alpha.4
0.1.0-alpha.3
0.1.0-alpha.2
0.1.0-alpha.1
0.1.0-alpha
0.0.1
Generator based flow control with context providing
github.com/morulus/csf
morulus/csf
csf
/
lib
/
effects
/
get-context.js
14 lines
(11 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
/* Get current context */
exports
.
default
=
function
(
) {
return
function
getContext
(
) {
return
this
; }; };
module
.
exports
=
exports
[
"default"
];