trimstring
Neatly trim template strings
Install
$ npm install --save trimstring
Usage
const trimstring = ; const genHtml = { return ;}; // Leading whitespace and trailing newlines will be trimmed.; //=>`<!doctype html><html lang='en'> <head> <meta charset='utf-8'> <title>Trimstring</title> </head> <body> This is my favorite library! </body></html>`
API
trimstring(templateString)
templateString
Type: string
A multiline string for trimming.
NOTE: If your string does not need multiple lines then trimstring probably won't help you. The core use of this library is for creating strings without leading whitespace or trailing/leading newlines but allowing you to still write your code in a readable way.
License
MIT © Ian Sinnott