Formatter is a tool that allows you to create complex template strings
// --> `Hello, world!`
format("Hello, {name}!", { name: "world" }
// --> `Hello, John Smith`
format("Hello, {user.name.first} {user.name.last}!", {
user: { name: { first: "John", last: "Smith" } },
})Install Dependencies:
yarn installDevelopment:
yarn devRun tests:
yarn test