0.1.5 • Published 4 years ago

@danieldietrich/rich-string v0.1.5

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

npm versionvulnerabilitiesminzipped size   buildcoverage   Platform   Sponsordonatelicense   Follow

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.