2.0.1 • Published 4 years ago
convert-to-spaces v2.0.1
convert-to-spaces 
Convert tabs to spaces in a string
Install
$ npm install --save convert-to-spacesUsage
import convertToSpaces from 'convert-to-spaces';
convertToSpaces('\t\thello!');
//=> ' hello!'API
convertToSpaces(input, spaces)
input
Type: string
String to convert.
spaces
Type: number
Default: 2
Number of spaces instead of each tab.
Related
- convert-to-tabs - Convert spaces to tabs.