aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tmpl/readme.md
blob: 61cc2f6ad167b8626013f297b0ea6aa7dead7b83 (plain)
1
2
3
4
5
6
7
8
9
10
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')
```