├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── build-test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── dist ├── h.js └── h.min.js ├── gulpfile.js ├── index.js ├── karma.conf.js ├── package.json ├── release.sh ├── src ├── H.js ├── helpers │ ├── conditionals.js │ ├── datetime.js │ ├── formatters.js │ ├── html.js │ ├── math.js │ └── strings.js └── util │ └── utils.js ├── tests ├── H.spec.js ├── helpers │ ├── conditionals.spec.js │ ├── datetime.spec.js │ ├── formatters.spec.js │ ├── html.spec.js │ ├── math.spec.js │ └── strings.spec.js ├── misc.js └── util │ └── utils.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | *.log 4 | lib/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/README.md -------------------------------------------------------------------------------- /dist/h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/dist/h.js -------------------------------------------------------------------------------- /dist/h.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/dist/h.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/release.sh -------------------------------------------------------------------------------- /src/H.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/H.js -------------------------------------------------------------------------------- /src/helpers/conditionals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/conditionals.js -------------------------------------------------------------------------------- /src/helpers/datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/datetime.js -------------------------------------------------------------------------------- /src/helpers/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/formatters.js -------------------------------------------------------------------------------- /src/helpers/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/html.js -------------------------------------------------------------------------------- /src/helpers/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/math.js -------------------------------------------------------------------------------- /src/helpers/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/helpers/strings.js -------------------------------------------------------------------------------- /src/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/src/util/utils.js -------------------------------------------------------------------------------- /tests/H.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/H.spec.js -------------------------------------------------------------------------------- /tests/helpers/conditionals.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/conditionals.spec.js -------------------------------------------------------------------------------- /tests/helpers/datetime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/datetime.spec.js -------------------------------------------------------------------------------- /tests/helpers/formatters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/formatters.spec.js -------------------------------------------------------------------------------- /tests/helpers/html.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/html.spec.js -------------------------------------------------------------------------------- /tests/helpers/math.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/math.spec.js -------------------------------------------------------------------------------- /tests/helpers/strings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/helpers/strings.spec.js -------------------------------------------------------------------------------- /tests/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/misc.js -------------------------------------------------------------------------------- /tests/util/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/tests/util/utils.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapfrogtechnology/just-handlebars-helpers/HEAD/yarn.lock --------------------------------------------------------------------------------