├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── lib ├── elements.ts ├── express-helpers.ts ├── extended-readable.ts ├── index.ts ├── map.ts └── util │ ├── pipe-into.ts │ └── to-string.ts ├── package.json ├── test ├── helpers.js ├── sanity.js ├── test-attributes.js ├── test-lists.js ├── test-textnodes.js └── test.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/README.md -------------------------------------------------------------------------------- /lib/elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/elements.ts -------------------------------------------------------------------------------- /lib/express-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/express-helpers.ts -------------------------------------------------------------------------------- /lib/extended-readable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/extended-readable.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/map.ts -------------------------------------------------------------------------------- /lib/util/pipe-into.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/util/pipe-into.ts -------------------------------------------------------------------------------- /lib/util/to-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/lib/util/to-string.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/sanity.js -------------------------------------------------------------------------------- /test/test-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/test-attributes.js -------------------------------------------------------------------------------- /test/test-lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/test-lists.js -------------------------------------------------------------------------------- /test/test-textnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/test-textnodes.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/flora/HEAD/yarn.lock --------------------------------------------------------------------------------