UNPKG
wepy-redux
Version:
latest (1.5.9)
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
0.0.4
0.0.3
0.0.2
0.0.1
WePY bindings for Redux
wepy-redux
/
lib
/
store.js
16 lines
(11 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict"
;
exports
.
__esModule
=
true
;
exports
.
getStore
= getStore;
exports
.
setStore
= setStore;
var
store =
null
;
function
getStore
(
) {
return
store; }
function
setStore
(
s
) { store = s; }