@cofondateurauchomage/libs 1.1.65 → 1.1.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,5 +21,5 @@ type Cleaned<T> = {
|
|
|
21
21
|
export declare function cleanObject<T extends object>(obj: T, options?: {
|
|
22
22
|
recursive?: boolean;
|
|
23
23
|
}): Cleaned<T>;
|
|
24
|
-
export
|
|
24
|
+
export declare function deepEqual<T>(obj1: T, obj2: T): boolean;
|
|
25
25
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cleanObject = exports.isObject = exports.typedObjectEntries = exports.typedKeys = exports.omitObject = exports.pickObject = void 0;
|
|
3
|
+
exports.deepEqual = exports.cleanObject = exports.isObject = exports.typedObjectEntries = exports.typedKeys = exports.omitObject = exports.pickObject = void 0;
|
|
4
4
|
const arrayUtils_1 = require("./arrayUtils");
|
|
5
5
|
/**
|
|
6
6
|
* Pick certaines clés d'un objet
|
|
@@ -77,4 +77,4 @@ function deepEqual(obj1, obj2) {
|
|
|
77
77
|
}
|
|
78
78
|
return false;
|
|
79
79
|
}
|
|
80
|
-
exports.
|
|
80
|
+
exports.deepEqual = deepEqual;
|