🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

dedent

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dedent

A string tag that strips indentation from multi-line strings. ⬅️

1.6.0
latest
Source
npm
Version published
Weekly downloads
29M
-15.74%
Maintainers
2
Weekly downloads
 
Created

What is dedent?

The dedent npm package is a utility for stripping indentation from multi-line strings. It is commonly used to make template literals more readable by removing the leading whitespace that is introduced by indenting the code for readability purposes.

What are dedent's main functionalities?

Remove indentation from multi-line strings

This feature allows you to write multi-line strings in your code with indentation for readability, and then process them with dedent to remove the extra leading whitespace.

const dedent = require('dedent');

const text = dedent`
    Line one
    Line two
    Line three
`;
console.log(text); // 'Line one\nLine two\nLine three'

Other packages similar to dedent

Keywords

dedent

FAQs

Package last updated on 01 May 2025

Did you know?

Socket

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