Convert tabs to spaces in a string
npm install convert-to-spaces> Convert tabs to spaces in a string
```
$ npm install --save convert-to-spaces
`js
import convertToSpaces from 'convert-to-spaces';
convertToSpaces('\t\thello!');
//=> ' hello!'
`
#### input
Type: string
String to convert.
#### spaces
Type: number2`
Default:
Number of spaces instead of each tab.
- convert-to-tabs - Convert spaces to tabs.