convert-to-tabs

Convert tabs to spaces in a string

Usage no npm install needed!

<script type="module">
  import convertToTabs from 'https://cdn.skypack.dev/convert-to-tabs';
</script>

README

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.

Related

License

MIT © Vadim Demedes