diff --git a/docs/docs.html b/docs/docs.html
index cdd0f06..bd842f1 100644
--- a/docs/docs.html
+++ b/docs/docs.html
@@ -447,7 +447,7 @@ var csv = Papa.unparse({
worker
- Yes, but then don't use the Web Worker feature unless your other dependencies are battle-hardened for worker threads. A worker thread loads an entire file, not just a function, so all those dependencies would be executed in an environment without a DOM and other window
features. If any of those dependencies crash (Cannot read property "defaultView" of undefined
is common), the whole worker thread will crash and parsing will not succeed.
+ Yes.
- Yes. + Yes.
@@ -209,7 +209,7 @@
- Probably not. It's safest to concatenate the rest of your dependencies and include Papa Parse in a seperate file. Any library that expects to have access to the window
or DOM will crash when executed in a worker thread. Only put other libraries in the same file if they are ready to be used in worker threads.
+ Yes.