UNPKG

252 BJavaScriptView Raw
1/**
2 * Create a store instance
3 * @function create
4 * @returns {Apemanstore} - A store
5 */
6'use strict'
7
8const Apemanstore = require('./apemanstore')
9
10/** @lends create */
11function create (...args) {
12 return new Apemanstore
13}
14
15module.exports = create