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 3731cf7 commit 326d1b6Copy full SHA for 326d1b6
src/index.ts
@@ -135,7 +135,7 @@ export const deepMerge = (
135
export const objectsEqualShallow = (
136
o1: Record<string, number | RegExp> | null | undefined,
137
o2: Record<string, number | RegExp> | null | undefined
138
-): boolean {
+): boolean => {
139
if (o1 == undefined || o2 == undefined) {
140
// Null is only equal to null, and undefined to undefined.
141
return o1 === o2;
0 commit comments