├── .gitignore ├── CNAME ├── LICENSE.md ├── README.md ├── demo ├── fallback │ ├── basic-operations.js │ ├── basic-operations │ │ ├── divide.js │ │ ├── minus.js │ │ ├── multiply.js │ │ └── plus.js │ └── fallback.html └── usages │ ├── usages-worker.coffee │ ├── usages-worker.js │ ├── usages-worker.map │ └── usages.html ├── easy-web-worker.coffee ├── easy-web-worker.js └── easy-web-worker.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | easywebworker.com 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/README.md -------------------------------------------------------------------------------- /demo/fallback/basic-operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/fallback/basic-operations.js -------------------------------------------------------------------------------- /demo/fallback/basic-operations/divide.js: -------------------------------------------------------------------------------- 1 | function divide(event, x, y) { 2 | self.log(x/y) 3 | } -------------------------------------------------------------------------------- /demo/fallback/basic-operations/minus.js: -------------------------------------------------------------------------------- 1 | function minus(event, x, y) { 2 | self.log(x-y) 3 | } -------------------------------------------------------------------------------- /demo/fallback/basic-operations/multiply.js: -------------------------------------------------------------------------------- 1 | function multiply(event, x, y) { 2 | self.log(x*y) 3 | } -------------------------------------------------------------------------------- /demo/fallback/basic-operations/plus.js: -------------------------------------------------------------------------------- 1 | function plus(event, x, y) { 2 | self.log(x+y) 3 | } -------------------------------------------------------------------------------- /demo/fallback/fallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/fallback/fallback.html -------------------------------------------------------------------------------- /demo/usages/usages-worker.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/usages/usages-worker.coffee -------------------------------------------------------------------------------- /demo/usages/usages-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/usages/usages-worker.js -------------------------------------------------------------------------------- /demo/usages/usages-worker.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/usages/usages-worker.map -------------------------------------------------------------------------------- /demo/usages/usages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/demo/usages/usages.html -------------------------------------------------------------------------------- /easy-web-worker.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/easy-web-worker.coffee -------------------------------------------------------------------------------- /easy-web-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/easy-web-worker.js -------------------------------------------------------------------------------- /easy-web-worker.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramesaliyev/EasyWebWorker/HEAD/easy-web-worker.map --------------------------------------------------------------------------------