UNPKG

269 BJavaScriptView Raw
1/**
2 * Redux store for apeman
3 * @module apemanstore
4 * @version 4.0.0
5 */
6'use strict'
7
8const Apemanstore = require('./apemanstore')
9const create = require('./create')
10
11let lib = create.bind(this)
12
13Object.assign(lib, {
14 Apemanstore,
15 create
16})
17
18module.exports = lib