├── .editorconfig ├── .gitignore ├── Hat.code-workspace ├── Hat.cover.ts ├── Hat.ts ├── LICENSE.txt ├── package.json ├── readme.md ├── tsconfig.json └── tsconfig.release.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | +* -------------------------------------------------------------------------------- /Hat.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/Hat.code-workspace -------------------------------------------------------------------------------- /Hat.cover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/Hat.cover.ts -------------------------------------------------------------------------------- /Hat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/Hat.ts -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresapp/hatjs/HEAD/tsconfig.release.json --------------------------------------------------------------------------------