UNPKG

formatter

Version:

Simple String Variable Replacement Formatter

7 lines (5 loc) 291 B
const formatter = require('..'); const likefood = formatter('I like {{ 0 }}, {{ 0 }} is excellent and kicks the pants off {{ 1 }}.'); // I can then log out how much I like bacon console.log(likefood('bacon', 'bread')); // <-- I like bacon, bacon is excellent and kicks the pants off bread.