From 55b4705c4cd21c78f5a76835ab98d855d8667d1f Mon Sep 17 00:00:00 2001 From: Alin Eugen Deac Date: Wed, 10 May 2023 20:19:54 +0200 Subject: [PATCH] Change is static value to number instead of string --- packages/support/src/reflections/reflect.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/support/src/reflections/reflect.ts b/packages/support/src/reflections/reflect.ts index ecc53d87..60f5cdf1 100644 --- a/packages/support/src/reflections/reflect.ts +++ b/packages/support/src/reflections/reflect.ts @@ -29,9 +29,9 @@ export function reflect() } // Create a key for given target - const isStatic: string = (context.kind !== 'class' && context.static) - ? 's' // static element - : 'n'; // non-static element + const isStatic: number = (context.kind !== 'class' && context.static) + ? 1 // static element + : 0; // non-static element const key: Key = [ META_REFLECTIONS,