blob: d00c99dae95dba4761424603d21d850fac018794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* Create a plugin to extend the state and the views.
*
* @param {Function(dispatch, state)} onInitialState
* @param {Funciton(state, action)} onReduceState
* @return {Plugin}
*/
function createPlugin(onInitialState, onReduceState) {
onReduceState = onReduceState || ((state, action) => state);
const plugin = {
onInitialState,
onReduceState
};
if (typeof window !== 'undefined') {
window.gitbookPlugins = window.gitbookPlugins || [];
window.gitbookPlugins.push(plugin);
}
return plugin;
}
module.exports = createPlugin;
|