8000 GitHub - jwalton/tsheredoc: Heredocs for javascript and typescript.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jwalton/tsheredoc

Repository files navigation

tsheredoc

NPM version Build Status semantic-release

What is it?

This makes is so you can generate multi-line strings without messing up your indents in Javascript/Typescript:

import heredoc from 'tsheredoc';

const usage = heredoc`
   Usage: mycommand [arguments]
   Does cool stuff.
`;
// Usage will be "Usage: mycommand [arguments]\nDoes cool stuff.\n"

This can be used either as a template string (as above) or as a function:

import heredoc from 'tsheredoc';

const usage = heredoc(`
   Usage: mycommand [arguments]
   Does cool stuff.
`);
// Same as above

About

Heredocs for javascript and typescript.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0