├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── ts ├── src │ └── index.ts └── test │ ├── index_test.ts │ └── state.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | ts/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/package.json -------------------------------------------------------------------------------- /ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/ts/src/index.ts -------------------------------------------------------------------------------- /ts/test/index_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/ts/test/index_test.ts -------------------------------------------------------------------------------- /ts/test/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/ts/test/state.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauschma/enumify/HEAD/tsconfig.json --------------------------------------------------------------------------------