Skip to main content
Module

x/reflect_metadata/mod.ts>Reflect.hasOwnMetadata

A Deno-compatible copy of the TypeScript Metadata Reflection API my Microsoft
Latest
function Reflect.hasOwnMetadata
import { Reflect } from "https://deno.land/x/reflect_metadata@v0.1.12-2/mod.ts";
const { hasOwnMetadata } = Reflect;

Gets a value indicating whether the target object has the provided metadata key defined.

Examples

class Example { }

// constructor result = Reflect.hasOwnMetadata("custom:annotation", Example);

Parameters

metadataKey: any

A key used to store and retrieve metadata.

target: any

The target object on which the metadata is defined.

Returns

boolean

true if the metadata key was defined on the target object; otherwise, false.

Gets a value indicating whether the target object has the provided metadata key defined.

Examples

class Example { // property declarations are not part of ES6, though they are valid in TypeScript: // static staticProperty; // property;

static staticMethod(p) { } method(p) { } }

// property (on constructor)
result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticProperty");

// property (on prototype)
result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "property");

// method (on constructor)
result = Reflect.hasOwnMetadata("custom:annotation", Example, "staticMethod");

// method (on prototype)
result = Reflect.hasOwnMetadata("custom:annotation", Example.prototype, "method");

Parameters

metadataKey: any

A key used to store and retrieve metadata.

target: any

The target object on which the metadata is defined.

propertyKey: string | symbol

The property key for the target.

Returns

boolean

true if the metadata key was defined on the target object; otherwise, false.