├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── index.cjs ├── index.d.cts ├── index.d.mts └── index.mjs ├── package.json ├── setupVitest.ts ├── src ├── index.test.ts └── index.ts ├── tsconfig.json └── vitest.config.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/dist/index.cjs -------------------------------------------------------------------------------- /dist/index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/dist/index.d.cts -------------------------------------------------------------------------------- /dist/index.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/dist/index.d.mts -------------------------------------------------------------------------------- /dist/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/dist/index.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/package.json -------------------------------------------------------------------------------- /setupVitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/setupVitest.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/go-go-try/HEAD/vitest.config.ts --------------------------------------------------------------------------------