├── .gitignore ├── .npmignore ├── LICENCE ├── README.md ├── jest.config.js ├── package.json ├── src ├── index.ts ├── option.ts └── result.ts ├── tests └── result.test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | lib 4 | types -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/src/option.ts -------------------------------------------------------------------------------- /src/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/src/result.ts -------------------------------------------------------------------------------- /tests/result.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/tests/result.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SieR-VR/ts-features/HEAD/yarn.lock --------------------------------------------------------------------------------