0.0.1 • Published 4 years ago

@b4dnewz/string-template v0.0.1

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

string-template

A utility to format strings with many options

NPM version Build Status Coverage percentage

Getting started

Download it using your favourite package manager.

npm i @b4dnewz/string-template

Then import it in your code and have fun formatting strings.

import template from "@b4dnewz/string-template";

const str = `
    That's an awfully hot {item},
    did {person} kill himself?
    Probably {answer}.
`;

template(str, {
    item: "coffee pot",
    person: "Jeffrey Epstein",
    answer: "not"
});

License

This package is released under MIT License © Filippo Conti