Skip to content

Commit 1359420

Browse files
committed
squash: fixing conflicts with the rebase
Signed-off-by: Lucas Holmquist <[email protected]>
1 parent 81f9f2f commit 1359420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/event/validation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ export const asData = (data: unknown, contentType: string): string => {
8181
return isBinary(maybeJson) ? asBase64(maybeJson) : maybeJson;
8282
};
8383

84-
export const isValidType = (v: boolean | number | string | Date | Uint32Array): boolean =>
84+
export const isValidType = (v: boolean | number | string | Date | Uint32Array | unknown): boolean =>
8585
isBoolean(v) || isInteger(v) || isString(v) || isDate(v) || isBinary(v);

0 commit comments

Comments
 (0)