Evan You
1 year ago
No known key found for this signature in database
GPG Key ID: B9D421896CA450FB
1 changed files with
1 additions and
1 deletions
-
packages/runtime-core/src/internalObject.ts
|
|
@ -4,7 +4,7 @@ |
|
|
|
* `Object.getPrototypeOf`. This is more performant than defining a |
|
|
|
* non-enumerable property. (one of the optimizations done for ssr-benchmark) |
|
|
|
*/ |
|
|
|
const internalObjectProto = Object.create(null) |
|
|
|
const internalObjectProto = {} |
|
|
|
|
|
|
|
export const createInternalObject = () => Object.create(internalObjectProto) |
|
|
|
|
|
|
|