function item (current, path, label) { var cls = '' if (current == path) cls = 'class="current"' return `
  • ${label}
  • ` } module.exports = (c) => ``