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 f163abd commit 9f720b5Copy full SHA for 9f720b5
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