├── .editorconfig ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── README.md ├── docs └── pt-br.md ├── index.js ├── package.json ├── test └── hmh-test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/README.md -------------------------------------------------------------------------------- /docs/pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/docs/pt-br.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/package.json -------------------------------------------------------------------------------- /test/hmh-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/test/hmh-test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/hmh/HEAD/yarn.lock --------------------------------------------------------------------------------