Index: frontend/node_modules/tmpl/readme.md
===================================================================
--- frontend/node_modules/tmpl/readme.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/tmpl/readme.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,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')
+```
