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 5fa88b8 commit e5f4bd4Copy full SHA for e5f4bd4
3 files changed
src/js/packages/@reactpy/client/package.json
@@ -1,5 +1,8 @@
1
{
2
"author": "Mark Bakhit",
3
+ "contributors": [
4
+ "Ryan Morshead"
5
+ ],
6
"dependencies": {
7
"json-pointer": "catalog:",
8
"preact": "catalog:",
src/js/packages/event-to-object/package.json
"json-pointer": "catalog:"
},
src/js/packages/event-to-object/src/index.ts
@@ -268,7 +268,7 @@ function shouldIgnoreValue(
268
value === null ||
269
value === undefined ||
270
keyName.startsWith("__") ||
271
- (keyName.length > 0 && keyName.toUpperCase() === keyName) ||
+ (keyName.length > 0 && /^[A-Z_]+$/.test(keyName)) ||
272
// Non-convertible types
273
typeof value === "function" ||
274
value instanceof CSSStyleSheet ||
0 commit comments