UNPKG

166 BJavaScriptView Raw
1'use strict';
2const _ = require('lodash');
3
4module.exports = (options) => {
5 return _.defaults(options || {}, {
6 root: null,
7 formats: []
8 });
9};