Skip to content

Instantly share code, notes, and snippets.

@leodutra
Forked from zenparsing/dedent-template.js
Created June 28, 2018 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leodutra/43350e6b7689f2b8822bb1ecc523a0f8 to your computer and use it in GitHub Desktop.
Save leodutra/43350e6b7689f2b8822bb1ecc523a0f8 to your computer and use it in GitHub Desktop.
Dedenting Template Strings
function dedent(callSite, ...args) {
function format(str) {
let size = -1;
return str.replace(/\n(\s+)/g, (m, m1) => {
if (size < 0)
size = m1.replace(/\t/g, " ").length;
return "\n" + m1.slice(Math.min(m1.length, size));
});
}
if (typeof callSite === "string")
return format(callSite);
if (typeof callSite === "function")
return (...args) => format(callSite(...args));
let output = callSite
.slice(0, args.length + 1)
.map((text, i) => (i === 0 ? "" : args[i - 1]) + text)
.join("");
return format(output);
}
let output;
console.log("=== As a string function ===");
output = dedent(`
this
is
the ${ "end" }
my only
friend
the end
`);
console.log(output);
console.log("=== As a template tag ===");
output = dedent`
this
is
the ${ "end" }
my only
friend
the end
`;
console.log(output);
console.log("=== As a higher-order template tag ===");
output = dedent(String.raw)`
this
is
the ${ "end" }
my only
friend
the \end
`;
console.log(output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment