Skip to content

Commit

Permalink
Merge branch 'main' into feat/idk
Browse files Browse the repository at this point in the history
  • Loading branch information
socram03 authored Feb 14, 2025
2 parents 5f9e7ce + 7849ad1 commit 6ec2fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deps/mixer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function Mixin<T, C extends TypeClass[]>(...args: C): C[number] & T {
for (const desc of descriptors) {
for (const key in desc) {
if (key === 'constructor') continue;
if (key in mixin.prototype) continue;
if (key in MixedClass.prototype) continue;
const descriptor = desc[key];

if (descriptor.value) {
Expand Down

0 comments on commit 6ec2fbb

Please sign in to comment.