├── .gitignore ├── .npmignore ├── package.json ├── readme.md ├── shrinkwrap.yaml ├── spec ├── helpers │ ├── enzyme.ts │ └── jsdom.ts ├── spec.tsx └── support │ └── jasmine.json ├── src ├── await.ts ├── bare.ts ├── if.ts ├── index.ts ├── map.ts ├── switch-when.ts └── util.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | .vscode/ 4 | yarn-error.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .vscode/ 3 | spec/ -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/readme.md -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/shrinkwrap.yaml -------------------------------------------------------------------------------- /spec/helpers/enzyme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/spec/helpers/enzyme.ts -------------------------------------------------------------------------------- /spec/helpers/jsdom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/spec/helpers/jsdom.ts -------------------------------------------------------------------------------- /spec/spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/spec/spec.tsx -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/await.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/await.ts -------------------------------------------------------------------------------- /src/bare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/bare.ts -------------------------------------------------------------------------------- /src/if.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/if.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/map.ts -------------------------------------------------------------------------------- /src/switch-when.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/switch-when.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosbelms/react-deco/HEAD/tsconfig.json --------------------------------------------------------------------------------