├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── jest.config.js ├── package.json ├── readme.md ├── src ├── index.test.ts └── index.ts └── tsconfig.json /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/LICENSE -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoyalIcing/soonerorlater/HEAD/tsconfig.json --------------------------------------------------------------------------------