
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Removes indentation from multiline strings. Works with both tabs and spaces.
$ npm install dedent-js
// Dedent can be also used as a function.
expect(dedent`Line #1
Line #2
Line #3`).to.equal('Line #1\nLine #2\nLine #3');
// Leading/trailing line break is removed.
expect(
dedent`
Line #1
Line #2
Line #3
`
).to.equal('Line #1\nLine #2\nLine #3');
// No more than one leading/trailing line break is removed.
expect(
dedent`
Line #1
Line #2
Line #3
`
).to.equal('\nLine #1\nLine #2\nLine #3\n');
// Only the "base" indentation is removed.
expect(
dedent`
Line #1
Line #2
Line #3
`
).to.equal('Line #1\n\tLine #2\n\t\tLine #3');
// The last line is ignored if it doesn't contain anything else than whitespace.
expect(
function () {
return dedent`
Line #1
Line #2
Line #3
`;
}()
).to.equal('Line #1\nLine #2\nLine #3');
// Escaped characters are NOT ignored.
expect(
dedent`
\tLine #1
\tLine #2
\tLine #3
`
).to.equal('Line #1\nLine #2\nLine #3');
Copyright (c) 2015 Martin Kolárik. Released under the MIT license.
The dedent package is another popular option for removing indentation from multi-line strings. It offers similar functionality to dedent-js, allowing you to maintain readable code while working with template literals.
The strip-indent package is used to strip leading whitespace from each line in a string. It is similar to dedent-js but focuses solely on removing leading whitespace without additional features.
The outdent package provides a similar functionality to dedent-js, allowing you to remove leading indentation from multi-line strings. It also offers additional features like custom indentation levels.
FAQs
Remove indentation from multiline strings
The npm package dedent-js receives a total of 264,552 weekly downloads. As such, dedent-js popularity was classified as popular.
We found that dedent-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.