xkcd/lib/helpers.js
Henrique Dias 3ba5c34afc
fix: on non tty streams
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2020-07-19 13:16:53 +01:00

31 lines
515 B
JavaScript

const progress = (str) => {
if (process.stdout.isTTY) {
process.stdout.clearLine()
process.stdout.cursorTo(0)
process.stdout.write(str)
} else {
console.log(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
}