From 9f89c857a76d7aef3627e8603d9d4b3fea1382f1 Mon Sep 17 00:00:00 2001 From: Alin Eugen Deac Date: Thu, 15 Feb 2024 20:04:44 +0100 Subject: [PATCH] Improve description of FUNCTION_PROTOTYPE const --- packages/contracts/src/support/reflections/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/contracts/src/support/reflections/index.ts b/packages/contracts/src/support/reflections/index.ts index c39055a0..97bc7664 100644 --- a/packages/contracts/src/support/reflections/index.ts +++ b/packages/contracts/src/support/reflections/index.ts @@ -8,6 +8,8 @@ export const SUPPORT_REFLECTIONS: unique symbol = Symbol('@aedart/contracts/supp /** * The prototype of {@link Function} * + * **Note**: _Prototype is obtained via `Reflect.getPrototypeOf(Function)`_ + * * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype * * @type {object}