This is a tagged template function that removes common leading indentation from each line, re-indents any interpolated multi-line values to match, and trims leading/trailing whitespace from the result.
const value = 'World';dedent` Hello, ${value}!`; // 'Hello, World!' Copy
const value = 'World';dedent` Hello, ${value}!`; // 'Hello, World!'
This is a tagged template function that removes common leading indentation from each line, re-indents any interpolated multi-line values to match, and trims leading/trailing whitespace from the result.