okunishinishi/node-pathtree

View on GitHub
lib/create.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @function create
 */

'use strict'

const Pathtree = require('./pathtree')

/** @lends create */
function create (config) {
  return new Pathtree(config)
}

module.exports = create