├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── benchmark ├── generate-test.js └── index.js ├── compose-tiny.d.ts ├── index.js ├── package.json ├── test.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/generate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/benchmark/generate-test.js -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /compose-tiny.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/compose-tiny.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipstersmoothie/compose-tiny/HEAD/yarn.lock --------------------------------------------------------------------------------