@tanstack/vue-query 4.19.0 → 4.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,7 @@
33
33
 
34
34
  // TYPES
35
35
  // UTILS
36
- const isServer = typeof document === 'undefined';
36
+ const isServer = typeof window === 'undefined' || 'Deno' in window;
37
37
  function noop() {
38
38
  return undefined;
39
39
  }