(key)
| 46 | }; |
| 47 | const isPlainObject = (val) => toTypeString(val) === "[object Object]"; |
| 48 | const isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key; |
| 49 | const isReservedProp = /* @__PURE__ */ makeMap( |
| 50 | // the leading comma is intentional so empty string "" is also included |
| 51 | ",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted" |