ES2015 Template Tag for Python-like format strings
npm install yassium
$ npm install yassium
`Usage
`js
const y = require("yassium");const simplePlaceholder = y
hello ${y};
simplePlaceholder("world") === "hello world";const nestedValue = y
my favorite number is ${y.lol.length};
nestedValue({ lol: ["something"] }) === "my favorite number is 1";
``