├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── index.js └── svg.js ├── generate-ts-def.js ├── package.json ├── src ├── index.js └── svg.js └── test ├── react-test.js ├── svg-test.js └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/dist/svg.js -------------------------------------------------------------------------------- /generate-ts-def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/generate-ts-def.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/src/svg.js -------------------------------------------------------------------------------- /test/react-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/test/react-test.js -------------------------------------------------------------------------------- /test/svg-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/test/svg-test.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/hyperscript-helpers/HEAD/test/test.js --------------------------------------------------------------------------------