diff --git a/faq.html b/faq.html index 6b0fc9e..899b170 100644 --- a/faq.html +++ b/faq.html @@ -82,6 +82,11 @@ No. Papa Parse has no dependencies. If jQuery is present, however, it plugs in to make it easier to select files from the DOM.

+
Can I put other libraries in the same file as Papa Parse?
+

+ 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. +

+
Which browsers is it compatible with?

@@ -94,11 +99,6 @@ Yes. But if you want to use Web Workers, you'll need to specify the relative path to Papa Parse. To do this, set Papa.SCRIPT_PATH to the relative path of the Papa Parse file. In synchronous loading, this is automatically detected.

-
Can I build Papa Parse into the same file with other JS dependencies?
-

- Yes, but then don't use the Web Worker feature unless your other dependencies are battle-hardened for worker threads. -

-
Is it open source? (Can I contribute something?)