Convert tabs to spaces in a string
$ npm install --save convert-to-spaces
const convertToSpaces = require('convert-to-spaces');
convertToSpaces('\t\thello!');
//=> ' hello!'Type: string
Source string.
Type: number
Default: 2
Number of spaces instead of each tab.
- convert-to-tabs - Convert spaces to tabs.
MIT © Vadim Demedes