UNPKG

137 BJavaScriptView Raw
1module.exports = function formatConfig(config) {
2 if (typeof config === 'function') {
3 return { '*': config }
4 }
5
6 return config
7}