├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json └── src └── custom-event.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/package.json -------------------------------------------------------------------------------- /src/custom-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shystruk/custom-event-js/HEAD/src/custom-event.js --------------------------------------------------------------------------------