gitextract_vwqyj7po/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── cjs/ │ ├── index.js │ └── remoted.js ├── esm/ │ ├── index.js │ └── remoted.js ├── examples/ │ ├── workway-node/ │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── workers/ │ │ │ └── os.js │ │ └── www/ │ │ ├── index.html │ │ └── js/ │ │ ├── 3rd/ │ │ │ ├── hyperhtml.js │ │ │ └── workway.js │ │ ├── index.js │ │ └── poly/ │ │ ├── es6-promise.js │ │ ├── event-targe.js │ │ └── poorlyfills.js │ └── workway-promise-reject/ │ ├── README.md │ ├── index.html │ ├── index.js │ ├── package.json │ └── workers/ │ └── index.js ├── index.js ├── min.js ├── node/ │ ├── client.js │ └── index.js ├── package.json ├── partial/ │ └── worker.js ├── remoted.js ├── test/ │ ├── background.js │ ├── circular/ │ │ ├── analyzer.js │ │ └── index.html │ ├── client.js │ ├── foo.html │ ├── foo.js │ ├── index.html │ ├── index.js │ ├── node.html │ ├── node.js │ ├── webworker.js │ └── workers/ │ ├── foo.js │ ├── other.js │ └── test.js └── worker.js