We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9acb27c commit 2545f67Copy full SHA for 2545f67
src/index.ts
@@ -128,12 +128,12 @@ function ordinaryGetMetadata<MetadataValue>(
128
return ordinaryGetOwnMetadata<MetadataValue>(metadataKey, target, propertyKey)
129
? ordinaryGetOwnMetadata<MetadataValue>(metadataKey, target, propertyKey)
130
: Object.getPrototypeOf(target)
131
- ? ordinaryGetMetadata(
132
- metadataKey,
133
- Object.getPrototypeOf(target),
134
- propertyKey,
135
- )
136
- : undefined;
+ ? ordinaryGetMetadata(
+ metadataKey,
+ Object.getPrototypeOf(target),
+ propertyKey,
+ )
+ : undefined;
137
}
138
139
export function metadata<MetadataValue>(
0 commit comments