├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── esbuild.cjs ├── package.json ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/esbuild.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealcode/locreq/HEAD/tsconfig.json --------------------------------------------------------------------------------