├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .verb.md ├── CHANGELOG ├── LICENSE ├── README.md ├── appveyor.yml ├── bower.json ├── docs ├── sections.md └── toc.md ├── gulpfile.js ├── index.js ├── lib ├── array.js ├── code.js ├── collection.js ├── comparison.js ├── date.js ├── fs.js ├── html.js ├── i18n.js ├── index.js ├── inflection.js ├── logging.js ├── markdown.js ├── match.js ├── math.js ├── misc.js ├── number.js ├── object.js ├── path.js ├── regex.js ├── string.js ├── url.js └── utils │ ├── html.js │ ├── index.js │ └── utils.js ├── package.json ├── test ├── array.js ├── code.js ├── collection.js ├── comparison.js ├── expected │ ├── object │ │ └── extend.txt │ └── simple.html ├── fixtures │ ├── assets │ │ ├── js │ │ │ ├── one.js │ │ │ └── two.js │ │ └── styles │ │ │ ├── one.css │ │ │ └── two.css │ ├── embedded.md │ ├── index.html │ ├── object │ │ ├── merge.hbs │ │ └── pick.hbs │ ├── read │ │ └── a.txt │ └── simple.md ├── fs.js ├── helpers.js ├── html.js ├── i18n.js ├── inflection.js ├── integration │ └── templates.js ├── markdown.js ├── match.js ├── math.js ├── misc.js ├── mocha.opts ├── number.js ├── object.js ├── path.js ├── string.js ├── subexpressions.js ├── support │ └── index.js ├── url.js └── utils.js └── verbfile.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/bower.json -------------------------------------------------------------------------------- /docs/sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/docs/sections.md -------------------------------------------------------------------------------- /docs/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/docs/toc.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/index.js -------------------------------------------------------------------------------- /lib/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/array.js -------------------------------------------------------------------------------- /lib/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/code.js -------------------------------------------------------------------------------- /lib/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/collection.js -------------------------------------------------------------------------------- /lib/comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/comparison.js -------------------------------------------------------------------------------- /lib/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/date.js -------------------------------------------------------------------------------- /lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/fs.js -------------------------------------------------------------------------------- /lib/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/html.js -------------------------------------------------------------------------------- /lib/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/i18n.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/inflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/inflection.js -------------------------------------------------------------------------------- /lib/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/logging.js -------------------------------------------------------------------------------- /lib/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/markdown.js -------------------------------------------------------------------------------- /lib/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/match.js -------------------------------------------------------------------------------- /lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/math.js -------------------------------------------------------------------------------- /lib/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/misc.js -------------------------------------------------------------------------------- /lib/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/number.js -------------------------------------------------------------------------------- /lib/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/object.js -------------------------------------------------------------------------------- /lib/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/path.js -------------------------------------------------------------------------------- /lib/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/regex.js -------------------------------------------------------------------------------- /lib/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/string.js -------------------------------------------------------------------------------- /lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/url.js -------------------------------------------------------------------------------- /lib/utils/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/utils/html.js -------------------------------------------------------------------------------- /lib/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/utils/index.js -------------------------------------------------------------------------------- /lib/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/lib/utils/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/package.json -------------------------------------------------------------------------------- /test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/array.js -------------------------------------------------------------------------------- /test/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/code.js -------------------------------------------------------------------------------- /test/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/collection.js -------------------------------------------------------------------------------- /test/comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/comparison.js -------------------------------------------------------------------------------- /test/expected/object/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/expected/object/extend.txt -------------------------------------------------------------------------------- /test/expected/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/expected/simple.html -------------------------------------------------------------------------------- /test/fixtures/assets/js/one.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | process.env.HANDLEBARS_TEST_FOO = 'foo'; 3 | })(); 4 | -------------------------------------------------------------------------------- /test/fixtures/assets/js/two.js: -------------------------------------------------------------------------------- 1 | process.env.HANDLEBARS_TEST_BAR = 'bar'; 2 | -------------------------------------------------------------------------------- /test/fixtures/assets/styles/one.css: -------------------------------------------------------------------------------- 1 | .body { 2 | background-color: blue; 3 | } -------------------------------------------------------------------------------- /test/fixtures/assets/styles/two.css: -------------------------------------------------------------------------------- 1 | .body { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /test/fixtures/embedded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/fixtures/embedded.md -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/object/merge.hbs: -------------------------------------------------------------------------------- 1 | {{#merge a b c}} -------------------------------------------------------------------------------- /test/fixtures/object/pick.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/fixtures/object/pick.hbs -------------------------------------------------------------------------------- /test/fixtures/read/a.txt: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /test/fixtures/simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/fixtures/simple.md -------------------------------------------------------------------------------- /test/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/fs.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/html.js -------------------------------------------------------------------------------- /test/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/i18n.js -------------------------------------------------------------------------------- /test/inflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/inflection.js -------------------------------------------------------------------------------- /test/integration/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/integration/templates.js -------------------------------------------------------------------------------- /test/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/markdown.js -------------------------------------------------------------------------------- /test/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/match.js -------------------------------------------------------------------------------- /test/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/math.js -------------------------------------------------------------------------------- /test/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/misc.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | -------------------------------------------------------------------------------- /test/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/number.js -------------------------------------------------------------------------------- /test/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/object.js -------------------------------------------------------------------------------- /test/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/path.js -------------------------------------------------------------------------------- /test/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/string.js -------------------------------------------------------------------------------- /test/subexpressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/subexpressions.js -------------------------------------------------------------------------------- /test/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/support/index.js -------------------------------------------------------------------------------- /test/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/url.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/test/utils.js -------------------------------------------------------------------------------- /verbfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpers/handlebars-helpers/HEAD/verbfile.js --------------------------------------------------------------------------------