persona-community-5/.pnpm-store/v3/files/45/f65614242c6bdfb69ae02df7c53dd1ed9b5f9d6faba7afa07f278382859710cee42f7890bd0170d0339e1e79d65b146497446cf5ba39f73c61d88b8cb23c53
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
350 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = shallowEqual;
function shallowEqual(actual, expected) {
const keys = Object.keys(expected);
for (const key of keys) {
if (actual[key] !== expected[key]) {
return false;
}
}
return true;
}
//# sourceMappingURL=shallowEqual.js.map