├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .verb.md ├── LICENSE ├── README.md ├── docs └── toc.md ├── index.js ├── lib ├── helpers │ ├── array.js │ ├── code.js │ ├── collection.js │ ├── conditional.js │ ├── fs.js │ ├── html.js │ ├── index.js │ ├── math.js │ ├── object.js │ ├── path.js │ └── string.js ├── iterator.js └── utils.js ├── package.json ├── recipes └── tips-and-tricks.md ├── test ├── array.js ├── code.js ├── collection.js ├── conditional.js ├── fixtures │ ├── README.md │ ├── a.js │ ├── a.md │ └── b.js ├── fs.js ├── html.js ├── math.js ├── object.js ├── path.js ├── string.js └── test.js └── verbfile.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/README.md -------------------------------------------------------------------------------- /docs/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/docs/toc.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/index.js -------------------------------------------------------------------------------- /lib/helpers/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/array.js -------------------------------------------------------------------------------- /lib/helpers/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/code.js -------------------------------------------------------------------------------- /lib/helpers/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/collection.js -------------------------------------------------------------------------------- /lib/helpers/conditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/conditional.js -------------------------------------------------------------------------------- /lib/helpers/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/fs.js -------------------------------------------------------------------------------- /lib/helpers/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/html.js -------------------------------------------------------------------------------- /lib/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/index.js -------------------------------------------------------------------------------- /lib/helpers/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/math.js -------------------------------------------------------------------------------- /lib/helpers/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/object.js -------------------------------------------------------------------------------- /lib/helpers/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/path.js -------------------------------------------------------------------------------- /lib/helpers/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/helpers/string.js -------------------------------------------------------------------------------- /lib/iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/iterator.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/package.json -------------------------------------------------------------------------------- /recipes/tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/recipes/tips-and-tricks.md -------------------------------------------------------------------------------- /test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/array.js -------------------------------------------------------------------------------- /test/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/code.js -------------------------------------------------------------------------------- /test/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/collection.js -------------------------------------------------------------------------------- /test/conditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/conditional.js -------------------------------------------------------------------------------- /test/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/fixtures/README.md -------------------------------------------------------------------------------- /test/fixtures/a.js: -------------------------------------------------------------------------------- 1 | function foo(a, b, c) { 2 | return a + b + c; 3 | } -------------------------------------------------------------------------------- /test/fixtures/a.md: -------------------------------------------------------------------------------- 1 | ``` 2 | foo 3 | ``` -------------------------------------------------------------------------------- /test/fixtures/b.js: -------------------------------------------------------------------------------- 1 | function bar(x, y, z) { 2 | return x + y + z; 3 | } -------------------------------------------------------------------------------- /test/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/fs.js -------------------------------------------------------------------------------- /test/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/html.js -------------------------------------------------------------------------------- /test/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/math.js -------------------------------------------------------------------------------- /test/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/object.js -------------------------------------------------------------------------------- /test/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/path.js -------------------------------------------------------------------------------- /test/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/string.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/test/test.js -------------------------------------------------------------------------------- /verbfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/template-helpers/HEAD/verbfile.js --------------------------------------------------------------------------------