├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── Readme.md ├── example ├── index.html └── on-leave-intent.gif ├── index.js ├── jest.config.js ├── lib └── on-leave-intent.min.js ├── package.json ├── src ├── index.js └── index.test.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/.prettierrc -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/Readme.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/example/index.html -------------------------------------------------------------------------------- /example/on-leave-intent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/example/on-leave-intent.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./src/index").default; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | // babel.config.js 2 | module.exports = { 3 | }; 4 | -------------------------------------------------------------------------------- /lib/on-leave-intent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/lib/on-leave-intent.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/src/index.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willianjusten/on-leave-intent/HEAD/yarn.lock --------------------------------------------------------------------------------