UNPKG

263 BJavaScriptView Raw
1
2const indent = (spaces, text) => {
3 return text.split('\n').map(line => ' '.repeat(spaces) + line).join('\n')
4}
5const indent2 = indent.bind(null, 2)
6const bulletize = (text) => {
7 return '•' + indent2(text).slice(1)
8}
9
10module.exports = { indent, bulletize }