/**
* Shallow compare of two objects
* @returnsboolean - true if objects are the same false if difference
*/exportconstshallowEqual = (a, b) => Object.keys(a).length === Object.keys(b).length && Object.keys(a).every((key) => a[key] === b[key]);
//# sourceMappingURL=shallow-equal.js.map