UNPKG

134 BJavaScriptView Raw
1module.exports = function makeNavList(data = {}){
2 return ['/'].concat(Object.keys(data).map(key => `/${key.split('.')[0]}.html`));
3}