├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── cjs ├── index.js └── package.json ├── es.js ├── esm └── index.js ├── index.d.tx ├── index.js ├── min.js ├── package.json ├── rollup ├── babel.config.js └── es.config.js └── test ├── dual.html ├── ie └── index.html ├── index.html ├── index.js ├── package.json └── perf.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | coverage/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/es.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.d.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/index.d.tx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/package.json -------------------------------------------------------------------------------- /rollup/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/rollup/babel.config.js -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /test/dual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/test/dual.html -------------------------------------------------------------------------------- /test/ie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/test/ie/index.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('../cjs'); -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /test/perf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/regular-elements/HEAD/test/perf.html --------------------------------------------------------------------------------