├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── QA.yaml ├── .gitignore ├── .npmignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── SUMMARY.md ├── docs ├── connections.md ├── effects.md ├── getting-started.md ├── migrations.md └── projections.md ├── package.json ├── pnpm-lock.yaml ├── rollup.config.build.js ├── rollup.config.test.js ├── src ├── connections │ ├── atoms │ │ ├── all │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── index.js │ │ ├── summarize │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ └── traverse │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ └── index.js ├── effects │ ├── atoms │ │ ├── index.js │ │ └── log │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ └── index.js ├── index.js ├── index.spec.js ├── migrations │ ├── atoms │ │ ├── add │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── drop │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── index.js │ │ ├── override │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── pop │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── remove │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── set │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── shift │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ └── unshift │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ ├── index.js │ └── molecules │ │ ├── index.js │ │ ├── merge │ │ ├── index.js │ │ ├── index.md │ │ └── index.spec.js │ │ └── toggle │ │ ├── index.js │ │ ├── index.md │ │ └── index.spec.js ├── projections │ ├── atoms │ │ ├── and │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── contains │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── count │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── get │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── head │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── index.js │ │ ├── last │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── map │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── not │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ ├── or │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ │ └── tail │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── index.spec.js │ ├── index.js │ └── molecules │ │ ├── index.js │ │ ├── resolve │ │ ├── index.js │ │ ├── index.md │ │ └── index.spec.js │ │ └── transform │ │ ├── index.js │ │ ├── index.md │ │ └── index.spec.js └── util │ ├── createPolymorphFunction │ ├── index.js │ └── index.spec.js │ ├── index.js │ └── resolveObjectPath │ ├── index.js │ └── index.spec.js └── styles └── website.css /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/QA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.github/workflows/QA.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /docs/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/docs/connections.md -------------------------------------------------------------------------------- /docs/effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/docs/effects.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/docs/migrations.md -------------------------------------------------------------------------------- /docs/projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/docs/projections.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/rollup.config.build.js -------------------------------------------------------------------------------- /rollup.config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/rollup.config.test.js -------------------------------------------------------------------------------- /src/connections/atoms/all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/all/index.js -------------------------------------------------------------------------------- /src/connections/atoms/all/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/all/index.md -------------------------------------------------------------------------------- /src/connections/atoms/all/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/all/index.spec.js -------------------------------------------------------------------------------- /src/connections/atoms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/index.js -------------------------------------------------------------------------------- /src/connections/atoms/summarize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/summarize/index.js -------------------------------------------------------------------------------- /src/connections/atoms/summarize/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/summarize/index.md -------------------------------------------------------------------------------- /src/connections/atoms/summarize/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/summarize/index.spec.js -------------------------------------------------------------------------------- /src/connections/atoms/traverse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/traverse/index.js -------------------------------------------------------------------------------- /src/connections/atoms/traverse/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/traverse/index.md -------------------------------------------------------------------------------- /src/connections/atoms/traverse/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/atoms/traverse/index.spec.js -------------------------------------------------------------------------------- /src/connections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/connections/index.js -------------------------------------------------------------------------------- /src/effects/atoms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/effects/atoms/index.js -------------------------------------------------------------------------------- /src/effects/atoms/log/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/effects/atoms/log/index.js -------------------------------------------------------------------------------- /src/effects/atoms/log/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/effects/atoms/log/index.md -------------------------------------------------------------------------------- /src/effects/atoms/log/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/effects/atoms/log/index.spec.js -------------------------------------------------------------------------------- /src/effects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/effects/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/add/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/add/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/add/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/add/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/add/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/add/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/drop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/drop/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/drop/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/drop/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/drop/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/drop/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/override/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/override/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/override/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/override/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/override/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/override/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/pop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/pop/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/pop/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/pop/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/pop/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/pop/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/remove/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/remove/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/remove/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/remove/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/remove/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/remove/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/set/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/set/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/set/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/set/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/set/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/set/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/shift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/shift/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/shift/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/shift/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/shift/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/shift/index.spec.js -------------------------------------------------------------------------------- /src/migrations/atoms/unshift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/unshift/index.js -------------------------------------------------------------------------------- /src/migrations/atoms/unshift/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/unshift/index.md -------------------------------------------------------------------------------- /src/migrations/atoms/unshift/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/atoms/unshift/index.spec.js -------------------------------------------------------------------------------- /src/migrations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/index.js -------------------------------------------------------------------------------- /src/migrations/molecules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/index.js -------------------------------------------------------------------------------- /src/migrations/molecules/merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/merge/index.js -------------------------------------------------------------------------------- /src/migrations/molecules/merge/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/merge/index.md -------------------------------------------------------------------------------- /src/migrations/molecules/merge/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/merge/index.spec.js -------------------------------------------------------------------------------- /src/migrations/molecules/toggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/toggle/index.js -------------------------------------------------------------------------------- /src/migrations/molecules/toggle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/toggle/index.md -------------------------------------------------------------------------------- /src/migrations/molecules/toggle/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/migrations/molecules/toggle/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/and/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/and/index.js -------------------------------------------------------------------------------- /src/projections/atoms/and/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/and/index.md -------------------------------------------------------------------------------- /src/projections/atoms/and/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/and/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/contains/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/contains/index.js -------------------------------------------------------------------------------- /src/projections/atoms/contains/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/contains/index.md -------------------------------------------------------------------------------- /src/projections/atoms/contains/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/contains/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/count/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/count/index.js -------------------------------------------------------------------------------- /src/projections/atoms/count/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/count/index.md -------------------------------------------------------------------------------- /src/projections/atoms/count/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/count/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/get/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/get/index.js -------------------------------------------------------------------------------- /src/projections/atoms/get/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/get/index.md -------------------------------------------------------------------------------- /src/projections/atoms/get/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/get/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/head/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/head/index.js -------------------------------------------------------------------------------- /src/projections/atoms/head/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/head/index.md -------------------------------------------------------------------------------- /src/projections/atoms/head/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/head/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/index.js -------------------------------------------------------------------------------- /src/projections/atoms/last/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/last/index.js -------------------------------------------------------------------------------- /src/projections/atoms/last/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/last/index.md -------------------------------------------------------------------------------- /src/projections/atoms/last/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/last/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/map/index.js -------------------------------------------------------------------------------- /src/projections/atoms/map/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/map/index.md -------------------------------------------------------------------------------- /src/projections/atoms/map/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/map/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/not/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/not/index.js -------------------------------------------------------------------------------- /src/projections/atoms/not/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/not/index.md -------------------------------------------------------------------------------- /src/projections/atoms/not/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/not/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/or/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/or/index.js -------------------------------------------------------------------------------- /src/projections/atoms/or/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/or/index.md -------------------------------------------------------------------------------- /src/projections/atoms/or/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/or/index.spec.js -------------------------------------------------------------------------------- /src/projections/atoms/tail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/tail/index.js -------------------------------------------------------------------------------- /src/projections/atoms/tail/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/tail/index.md -------------------------------------------------------------------------------- /src/projections/atoms/tail/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/atoms/tail/index.spec.js -------------------------------------------------------------------------------- /src/projections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/index.js -------------------------------------------------------------------------------- /src/projections/molecules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/index.js -------------------------------------------------------------------------------- /src/projections/molecules/resolve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/resolve/index.js -------------------------------------------------------------------------------- /src/projections/molecules/resolve/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/resolve/index.md -------------------------------------------------------------------------------- /src/projections/molecules/resolve/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/resolve/index.spec.js -------------------------------------------------------------------------------- /src/projections/molecules/transform/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/transform/index.js -------------------------------------------------------------------------------- /src/projections/molecules/transform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/transform/index.md -------------------------------------------------------------------------------- /src/projections/molecules/transform/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/projections/molecules/transform/index.spec.js -------------------------------------------------------------------------------- /src/util/createPolymorphFunction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/util/createPolymorphFunction/index.js -------------------------------------------------------------------------------- /src/util/createPolymorphFunction/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/util/createPolymorphFunction/index.spec.js -------------------------------------------------------------------------------- /src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/util/index.js -------------------------------------------------------------------------------- /src/util/resolveObjectPath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/util/resolveObjectPath/index.js -------------------------------------------------------------------------------- /src/util/resolveObjectPath/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grebaldi/plow-js/HEAD/src/util/resolveObjectPath/index.spec.js -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- 1 | /* CSS for website */ 2 | --------------------------------------------------------------------------------