This repository was archived by the owner on Jul 31, 2023. It is now read-only.
V 0.10.0
💥 Breaking Change
Implements the improvement from #165
Indentations from string interpolation will now be handled more gracefully.
Example:
const a = dedent`2
3
4`;
const b = `1
${a}
5`;Will now be handled like:
const b = `1
2
3
4
5`;Instead of:
const b = `1
2
3
4
5`;This improvement was implemented by @calculuschild in #227. Thank you!