Socket
Socket
Sign inDemoInstall

detab

Package Overview
Dependencies
1
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    detab

Detab: tabs -> spaces


Version published
Maintainers
1
Install size
16.5 kB
Created

Package description

What is detab?

The detab npm package is a utility for converting tabs in a string to spaces. It is particularly useful when dealing with code or text that needs to be formatted with a consistent number of spaces instead of tabs for better readability or to conform to certain coding standards.

What are detab's main functionalities?

Tab to Space Conversion

Converts all tabs in a string to a specified number of spaces. In this example, each tab is replaced with 4 spaces.

const detab = require('detab');
const textWithTabs = 'Hello\tWorld';
const textWithSpaces = detab(textWithTabs, 4);
console.log(textWithSpaces); // Output: 'Hello    World'

Other packages similar to detab

Readme

Source

detab Build Status Coverage Status

Detab: tabs -> spaces.

Installation

npm:

npm install detab

detab is also available for bower, component, duo, and for AMD, CommonJS, and globals (uncompressed and compressed).

Usage

Dependencies.

var detab = require('detab');

Create a normal error and format a string:

var four = detab('\tfoo\nbar\tbaz');
var two = detab('\tfoo\nbar\tbaz', 2);
var eight = detab('\tfoo\nbar\tbaz', 8);

Yields:

    foo
bar baz
  foo
bar baz
        foo
bar     baz

API

detab(value[, size])

Replace tabs with spaces, being smart about which column the tab is at and which size should be used.

Parameters:

  • value (string) — Value with tabs;
  • size (number, default: 4) — Tab-size.

Returns: string — Value without tabs

License

MIT @ Titus Wormer

Keywords

FAQs

Last updated on 07 Jul 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc