├── .eslintignore ├── .eslintrc.yml ├── .github └── workflows │ ├── nodeci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── Makefile ├── README.md ├── __tests__ ├── __snapshots__ │ └── test.js.snap └── test.js ├── docs └── README.md ├── index.js └── package.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/nodeci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/.github/workflows/nodeci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/__tests__/__snapshots__/test.js.snap -------------------------------------------------------------------------------- /__tests__/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/__tests__/test.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/docs/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-components/js-pairs/HEAD/package.json --------------------------------------------------------------------------------