@tamagui/code-to-html 1.0.1-beta.193 → 1.0.1-beta.194

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.
@@ -9223,11 +9223,11 @@ var import_extend = __toESM(require_extend(), 1);
9223
9223
 
9224
9224
  // ../../node_modules/unified/node_modules/is-plain-obj/index.js
9225
9225
  function isPlainObject(value) {
9226
- if (Object.prototype.toString.call(value) !== "[object Object]") {
9226
+ if (typeof value !== "object" || value === null) {
9227
9227
  return false;
9228
9228
  }
9229
9229
  const prototype = Object.getPrototypeOf(value);
9230
- return prototype === null || prototype === Object.prototype;
9230
+ return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
9231
9231
  }
9232
9232
 
9233
9233
  // ../../node_modules/trough/index.js