├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENCE ├── Readme.md ├── compile.js ├── index.js ├── package.json └── test ├── compile-strong.js ├── compile-weak.js ├── index.js └── string-template.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/LICENCE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/Readme.md -------------------------------------------------------------------------------- /compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/compile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/package.json -------------------------------------------------------------------------------- /test/compile-strong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/test/compile-strong.js -------------------------------------------------------------------------------- /test/compile-weak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/test/compile-weak.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/test/index.js -------------------------------------------------------------------------------- /test/string-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Esch/string-template/HEAD/test/string-template.js --------------------------------------------------------------------------------