NodeJS string dedenting module – make your template strings look nice!
npm install dentistNodeJS string dedenting module – make your template strings look nice!
npm install dentist
``javascript
import { dedent } from 'dentist';const str = dedent(
it's indented!
Crazy!);
/* Now str contains the string without the leading indentation:
Hi, check out the following line:
it's indented!
Crazy!
*/
``