|
|
5 napja | |
|---|---|---|
| .. | ||
| index.js | 5 napja | |
| license | 5 napja | |
| package.json | 5 napja | |
| readme.md | 5 napja | |
Detab: tabs → spaces.
npm:
npm install detab
var detab = require('detab')
console.log(detab('\tfoo\nbar\tbaz'))
console.log(detab('\tfoo\nbar\tbaz', 2))
console.log(detab('\tfoo\nbar\tbaz', 8))
Yields:
foo
bar baz
foo
bar baz
foo
bar baz
detab(value[, size=4])Replace tabs with spaces in value (string), being smart about which column
the tab is at and which size (number, default: 4) should be used.