Skip to content

Instantly share code, notes, and snippets.

@timwis
Last active December 29, 2016 12:33
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 timwis/99d65f244ecb6b97f01b3a9c93b6b91d to your computer and use it in GitHub Desktop.
Save timwis/99d65f244ecb6b97f01b3a9c93b6b91d to your computer and use it in GitHub Desktop.
Indent multi-line string

Indent multi-line string

`
<div>
  ${indent(JSON.stringify(data, null, 2), 2)}
</div>
`
function indent (str, spaces) {
const indent = ' '.repeat(spaces)
return str.split('\n').map((line) => indent + line).join('\n')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment