Files
setup-haskell/node_modules/tmpl/readme.md
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

11 lines
263 B
Markdown

tmpl [![Build Status](https://secure.travis-ci.org/nshah/nodejs-tmpl.png)](http://travis-ci.org/nshah/nodejs-tmpl)
====
Simple string formatting using `{}`.
```javascript
assert.equal(
tmpl('the answer is {answer}', { answer: 42 }),
'the answer is 42')
```