UNPKG

formatter

Version:

Simple String Variable Replacement Formatter

6 lines (4 loc) 275 B
const formatter = require('..'); const likefood = formatter('I like {{ great }}, {{ great }} is excellent and kicks the pants off {{ poor }}.'); console.log(likefood({ great: 'bacon', poor: 'bread' })); // <-- I like bacon, bacon is excellent and kicks the pants off bread.