@b4dnewz/string-template
v0.0.1
Published
A utility to format strings with many options
Downloads
6
Maintainers
Readme
string-template
A utility to format strings with many options
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