any-template
v0.1.0
Published
Tiny tagged-template parser and stringify
Downloads
1
Maintainers
Readme
any-template
A tiny package for parsing and stringifying tagged template strings. Make a tiny template in seconds:
import template from "any-template";
const greeting = template`Good ${"timeOfDay"}, ${"name"}!`;
greeting.parse("Good morning, friend!") // { timeOfDay: "morning", name: "friend" }
greeting.stringify({ timeOfDay: "evening", name: "Pikachu" }) // "Good evening, Pikachu!"