npm.io
1.0.3 • Published 9 years ago

convert-to-tabs

Licence
MIT
Version
1.0.3
Deps
0
Vulns
0
Weekly
0
Stars
2

convert-to-tabs Build Status

Convert tabs to spaces in a string

Install

$ npm install --save convert-to-tabs

Usage

const convertToTabs = require('convert-to-tabs');

convertToTabs('    hello');
//=> '\t\thello'

convertToTabs('    hello', 4);
//=> '\thello'

API

convertToTabs(str, [spaces])
str

Type: string

Source string.

spaces

Type: number
Default: 2

Number of spaces to treat as one tab.

License

MIT Vadim Demedes

Keywords