xkcd/lib/helpers.js
Henrique Dias e2ad244102 feat: escape HTML and columns on home page
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-04-29 16:58:18 +01:00

27 lines
443 B
JavaScript

const progress = (str) => {
process.stdout.clearLine()
process.stdout.cursorTo(0)
process.stdout.write(str)
}
const pad = (str, max) => {
str = str.toString()
return str.length < max ? pad('0' + str, max) : str
}
const tagsToReplace = {
'&': '&amp;',
'<': '&lt;',
'>': '&gt;'
}
const escapeHtml = (html) => {
html.replace(/[&<>]/g, tag => tagsToReplace[tag] || tag)
}
module.exports = {
progress,
escapeHtml,
pad
}