Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
RamIdeas committed Jul 30, 2024
1 parent a454995 commit 5a4fb43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/miniflare/src/workers/core/proxy.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ function isPlainObject(value: unknown) {
Object.getOwnPropertyNames(proto).sort().join("\0") === objectProtoNames
);
}
function objectContainsFunctions(obj: Record<string | symbol, unknown>): boolean {
function objectContainsFunctions(
obj: Record<string | symbol, unknown>
): boolean {
const propertyNames = Object.getOwnPropertyNames(obj);
const propertySymbols = Object.getOwnPropertySymbols(obj);
const properties = [...propertyNames, ...propertySymbols];
Expand Down

0 comments on commit 5a4fb43

Please sign in to comment.