(fn)
| 51 | ",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted" |
| 52 | ); |
| 53 | const cacheStringFunction = (fn) => { |
| 54 | const cache = /* @__PURE__ */ Object.create(null); |
| 55 | return ((str) => { |
| 56 | const hit = cache[str]; |
| 57 | return hit || (cache[str] = fn(str)); |
| 58 | }); |
| 59 | }; |
| 60 | const camelizeRE = /-\w/g; |
| 61 | const camelize = cacheStringFunction( |
| 62 | (str) => { |