├── .gitignore ├── .prettierrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.js.map └── package.json ├── img └── example4.png ├── jest.config.js ├── package.json ├── src └── index.ts ├── test └── index.spec.ts ├── tsconfig.build.json ├── tsconfig.jest.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/README.md -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/dist/package.json -------------------------------------------------------------------------------- /img/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/img/example4.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelyali/oO/HEAD/tsconfig.json --------------------------------------------------------------------------------