UNPKG

188 BJavaScriptView Raw
1/**
2 * @function create
3 */
4
5'use strict';
6
7var ApHistory = require('./ap_history');
8
9/** @lends create */
10function create(conf) {
11 return new ApHistory(conf);
12}
13
14module.exports = create;
\No newline at end of file