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 ee3c8c0 commit 27c82b5Copy full SHA for 27c82b5
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