UNPKG

253 BJavaScriptView Raw
1/**
2 * History manager for browser
3 * @module apeman-brws-history
4 */
5
6'use strict'
7
8const create = require('./create')
9const ApHistory = require('./ap_history')
10
11let lib = create({})
12
13Object.assign(lib, {
14 ApHistory,
15 create
16})
17
18module.exports = lib