
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
spacetrim
Advanced tools
Spacetrim is trimming string from all 4 sides.
It is very helpful to keep pretty code indentation without keeping strange spaces inside a string.
β is whitespace and
spaceTrimwill trim the string at the boundaries βββ
βββββββββββββ
ββββββββββββββ
βββββββββββββββ
ββββββββHelloβββ
ββββββββSpaceββββ
ββββββββTrim βββββ
βββββββββββββββββββ
ββββββββββββββββββββ
npm i spacetrim
import spaceTrim from 'spacetrim';
const trimmed = spaceTrim(`
Hello
Space
Trim
`);
console.log(trimmed);
/*
Hello
Space
Trim
*/
See more examples in simple tests.
This is very usefull when you want to trim multiline strings inside multiline strings.
import { spaceTrim } from 'spacetrim';
const trimmed = spaceTrim(
(block) => `
Numbers
${block(['1', '2', '3'].join('\n'))}
Chars
${block(['A', 'B', 'C'].join('\n'))}
`,
);
console.log(trimmed);
/*
Numbers
1
2
3
Chars
A
B
C
*/
See more examples in nesting tests.
You can also trim multiline strings which are fetched asynchronously inside multiline strings.
import { spaceTrim } from 'spacetrim';
const trimmed = await spaceTrim(
async (block) => `
TypeScript:
${await fetch('https://en.wikipedia.org/wiki/TypeScript').then(
(result) => result.text(),
)}
`,
);
console.log(trimmed);
/*
TypeScript:
TypeScript is a free and open source programming language...
*/
See more examples in asynchronous nesting tests.
I am open to pull requests, feedback, and suggestions. Or if you like this utility, you can β buy me a coffee or donate via cryptocurrencies.
You can also β star the spacetrim package, follow me on GitHub or various other social networks.
FAQs
Spacetrim is trimming string from all 4 sides.
The npm package spacetrim receives a total of 871,864 weekly downloads. As such, spacetrim popularity was classified as popular.
We found that spacetrim 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.