├── .eslintrc.json ├── .github └── pull_request_template.md ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── redfour.sublime-project ├── renovate.json ├── src └── index.js └── test ├── .eslintrc.json └── index.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@mixmaxhq/prettier-config" 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/package.json -------------------------------------------------------------------------------- /redfour.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/redfour.sublime-project -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/src/index.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/redfour/HEAD/test/index.js --------------------------------------------------------------------------------