This commit is contained in:
26
node_modules/remark-stringify/lib/util/pad.js
generated
vendored
Normal file
26
node_modules/remark-stringify/lib/util/pad.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict'
|
||||
|
||||
var repeat = require('repeat-string')
|
||||
|
||||
module.exports = pad
|
||||
|
||||
var lineFeed = '\n'
|
||||
var space = ' '
|
||||
|
||||
var tabSize = 4
|
||||
|
||||
// Pad `value` with `level * tabSize` spaces. Respects lines. Ignores empty
|
||||
// lines.
|
||||
function pad(value, level) {
|
||||
var values = value.split(lineFeed)
|
||||
var index = values.length
|
||||
var padding = repeat(space, level * tabSize)
|
||||
|
||||
while (index--) {
|
||||
if (values[index].length !== 0) {
|
||||
values[index] = padding + values[index]
|
||||
}
|
||||
}
|
||||
|
||||
return values.join(lineFeed)
|
||||
}
|
||||
Reference in New Issue
Block a user