style: remove unneeded console.log

This commit is contained in:
Maddison Hellstrom 2018-11-09 17:54:04 -08:00
parent 9a559a143f
commit 4be41fdf4c
1 changed files with 0 additions and 1 deletions

View File

@ -129,7 +129,6 @@ gulp.task("readme", () => {
const maps = c.reduce((acc2, map) => {
const leader = typeof map.leader !== "undefined" ? map.leader : domain === "global" ? "" : conf.siteleader
const mapStr = util.escape(`${leader}${map.alias}`.replace(" ", "<space>"))
console.log({leader, mapStr, sl: conf.siteleader, ml: map.leader })
return `${acc2}<tr><td><code>${mapStr}</code></td><td>${map.description}</td></tr>\n`
}, "")
const domainStr = domain === "global" ? "<strong>global</strong>" : `<a href="//${domain}">${domain}</a>`