├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── babel.config.js ├── cjs ├── index.d.ts └── index.js ├── esm ├── index.d.ts └── index.js ├── example.png ├── index.test.ts ├── index.ts ├── package.json └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/babel.config.js -------------------------------------------------------------------------------- /cjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/cjs/index.d.ts -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/cjs/index.js -------------------------------------------------------------------------------- /esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/esm/index.d.ts -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/esm/index.js -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/example.png -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/index.test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymatuhin/flatry/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------