├── .gitignore ├── README.md ├── bower.json ├── dist └── index.html ├── package.json ├── src ├── Control │ └── Monad │ │ ├── Aff │ │ └── Worker │ │ │ ├── Master.purs │ │ │ └── Slave.purs │ │ └── Eff │ │ ├── Worker.purs │ │ └── Worker │ │ ├── Master.js │ │ ├── Master.purs │ │ ├── Slave.js │ │ └── Slave.purs ├── Echo.js ├── Echo.purs └── Main.purs └── test └── Main.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/bower.json -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/package.json -------------------------------------------------------------------------------- /src/Control/Monad/Aff/Worker/Master.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Aff/Worker/Master.purs -------------------------------------------------------------------------------- /src/Control/Monad/Aff/Worker/Slave.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Aff/Worker/Slave.purs -------------------------------------------------------------------------------- /src/Control/Monad/Eff/Worker.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Eff/Worker.purs -------------------------------------------------------------------------------- /src/Control/Monad/Eff/Worker/Master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Eff/Worker/Master.js -------------------------------------------------------------------------------- /src/Control/Monad/Eff/Worker/Master.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Eff/Worker/Master.purs -------------------------------------------------------------------------------- /src/Control/Monad/Eff/Worker/Slave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Eff/Worker/Slave.js -------------------------------------------------------------------------------- /src/Control/Monad/Eff/Worker/Slave.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Control/Monad/Eff/Worker/Slave.purs -------------------------------------------------------------------------------- /src/Echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Echo.js -------------------------------------------------------------------------------- /src/Echo.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Echo.purs -------------------------------------------------------------------------------- /src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/src/Main.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanDupal/purescript-web-workers/HEAD/test/Main.purs --------------------------------------------------------------------------------