tiny-dedent
View project on GitHub:
GitHub\ A Tiny module for stripping indentation from multi-line strings. 150 bytes (min & gzipped) - GitHub - victornpb/tiny-dedent: A Tiny module for stripping indentation from multi-line strings. 150...\ https://github.com/victornpb/tiny-dedent
A Tiny module for stripping indentation from multi-line strings.
- It's tiny!Ā 150 bytesĀ (gzipped)
- No dependencies!
- It's Fast!
Installation
Yarn
yarn add tiny-dedent
NPM
npm install tiny-dedent
CDN
If you don't use a package manager, you canĀ accessĀ tiny-dedent
Ā via unpkg (CDN), download the source, or point your package manager to the url.
Usage
import S from "tiny-dedent";
function usageExample() {
const first = S(`A string that gets so long you need to break it over
multiple lines. Luckily tiny-dedent is here to keep it
readable without lots of spaces ending up in the string
itself.`);
A string that gets so long you need to break it over
multiple lines. Luckily tiny-dedent is here to keep it
readable without lots of spaces ending up in the string
itself.
const second = S(`
Leading and trailing lines will be trimmed, so you can write something like
this and have it work as you expect:
* how convenient it is
* that I can use an indented list
- and still have it do the right thing
That's all.
`);
Leading and trailing lines will be trimmed, so you can write something like
this and have it work as you expect:
* how convenient it is
* that I can use an indented list
- and still have it do the right thing
That's all.
Wait! I lied. Dedent can also be used as a function.
Motivation
I've been writting this replace regex over and over at the end of every template literal string, then I found there's a pretty popular package called dedent, which does exactly that. But I didn't feel like adding a dependency to do something that should be a macro, so I wrote this as a simple function.
This library is meant to be kept really really simple. It does not try to handle any edge cases, if you need something something more sophisticated take a look at theĀ dedentĀ package, it is around ~50 lines.
Why not a tagged function?
A tagged function has to manually make the interpolations, instead of running it natively. Passing the string it as regular function parameter leaves the hard work for the javascript engine instead of doing it in userland, in theory it should be faster, and you need ship less code.
Suggestions / Questions
File aĀ issueĀ on this repository
License
MIT