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 8ea0b90 commit 57ccee4Copy full SHA for 57ccee4
1 file changed
packages/core/src/utils/object.ts
@@ -62,7 +62,7 @@ export function addNonEnumerableProperty(obj: object, name: string | symbol, val
62
configurable: true,
63
});
64
} catch {
65
- DEBUG_BUILD && debug.log(`Failed to add non-enumerable property "${name}" to object`, obj);
+ DEBUG_BUILD && debug.log(`Failed to add non-enumerable property "${String(name)}" to object`, obj);
66
}
67
68
0 commit comments