@builder.io/sdk 2.0.7 → 2.0.8

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.
package/dist/index.esm.js CHANGED
@@ -16,21 +16,16 @@ import hash from 'hash-sum';
16
16
 
17
17
  var isSafari = typeof window !== 'undefined' &&
18
18
  /^((?!chrome|android).)*safari/i.test(window.navigator.userAgent);
19
+ var isClient = typeof window !== 'undefined';
19
20
  // TODO: queue all of these in a debounceNextTick
20
21
  function nextTick(fn) {
21
- // React native
22
- if (typeof setImmediate === 'function' && typeof window === 'undefined') {
23
- return setImmediate(fn);
24
- }
25
- // TODO: should this be setImmediate instead? Forgot if that is micro or macro task
26
- // TODO: detect specifically if is server
27
22
  // if (typeof process !== 'undefined' && process.nextTick) {
28
23
  // console.log('process.nextTick?');
29
24
  // process.nextTick(fn);
30
25
  // return;
31
26
  // }
32
27
  // FIXME: fix the real safari issue of this randomly not working
33
- if (isSafari || typeof MutationObserver === 'undefined') {
28
+ if (!isClient || isSafari || typeof MutationObserver === 'undefined') {
34
29
  setTimeout(fn);
35
30
  return;
36
31
  }
@@ -123,7 +118,7 @@ function assertAllowedPropertyName(name) {
123
118
  throw new Error("Property name \"".concat(name, "\" is not allowed"));
124
119
  }
125
120
 
126
- var version = "2.0.6";
121
+ var version = "2.0.7";
127
122
 
128
123
  var Subscription = /** @class */ (function () {
129
124
  function Subscription(listeners, listener) {