@danieldietrich/rich-string
v0.1.5
Published
A tag function that automatically aligns embedded multiline strings.
Downloads
6
Maintainers
Readme
rich-string
A tag function that automatically aligns embedded multiline strings.
Installation
npm i @danieldietrich/rich-string
Usage
The module supports ES6 import and CommonJS require style.
import s from '@danieldietrich/rich-string';
/*
function sayHi(name) {
console.log('Hi ${name}, I hope you are doing well!');
}
*/
const res = generateSayHi(s`
console.log('Hi \${name}, I hope you are doing well!');
`);
function generateSayHi(body: string): string {
return s`
function sayHi(name) {
${body}
}
`;
}
Copyright © 2020 by Daniel Dietrich. Released under the MIT license.