equal
deleted
inserted
replaced
42 "default": () => (/* binding */ isShallowEqual), |
42 "default": () => (/* binding */ isShallowEqual), |
43 isShallowEqualArrays: () => (/* reexport */ isShallowEqualArrays), |
43 isShallowEqualArrays: () => (/* reexport */ isShallowEqualArrays), |
44 isShallowEqualObjects: () => (/* reexport */ isShallowEqualObjects) |
44 isShallowEqualObjects: () => (/* reexport */ isShallowEqualObjects) |
45 }); |
45 }); |
46 |
46 |
47 ;// CONCATENATED MODULE: ./node_modules/@wordpress/is-shallow-equal/build-module/objects.js |
47 ;// ./node_modules/@wordpress/is-shallow-equal/build-module/objects.js |
48 /** |
48 /** |
49 * Returns true if the two objects are shallow equal, or false otherwise. |
49 * Returns true if the two objects are shallow equal, or false otherwise. |
50 * |
50 * |
51 * @param {import('.').ComparableObject} a First object to compare. |
51 * @param {import('.').ComparableObject} a First object to compare. |
52 * @param {import('.').ComparableObject} b Second object to compare. |
52 * @param {import('.').ComparableObject} b Second object to compare. |
78 i++; |
78 i++; |
79 } |
79 } |
80 return true; |
80 return true; |
81 } |
81 } |
82 |
82 |
83 ;// CONCATENATED MODULE: ./node_modules/@wordpress/is-shallow-equal/build-module/arrays.js |
83 ;// ./node_modules/@wordpress/is-shallow-equal/build-module/arrays.js |
84 /** |
84 /** |
85 * Returns true if the two arrays are shallow equal, or false otherwise. |
85 * Returns true if the two arrays are shallow equal, or false otherwise. |
86 * |
86 * |
87 * @param {any[]} a First array to compare. |
87 * @param {any[]} a First array to compare. |
88 * @param {any[]} b Second array to compare. |
88 * @param {any[]} b Second array to compare. |
102 } |
102 } |
103 } |
103 } |
104 return true; |
104 return true; |
105 } |
105 } |
106 |
106 |
107 ;// CONCATENATED MODULE: ./node_modules/@wordpress/is-shallow-equal/build-module/index.js |
107 ;// ./node_modules/@wordpress/is-shallow-equal/build-module/index.js |
108 /** |
108 /** |
109 * Internal dependencies |
109 * Internal dependencies |
110 */ |
110 */ |
111 |
111 |
112 |
112 |