epps
Version:
Enhances Pinia stores with advanced features such as persistence, encryption, and store extension. Simplifies state management and ensures data security for Vue.js and Nuxt applications.
10 lines (9 loc) • 382 B
TypeScript
import type { AnyObject } from "../../types";
/**
* Compares objects to determine if they are identical
* @param {object} object1
* @param {object} object2
* @param {array} excludedKeys - name of properties not to be compared
* @returns {boolean} areIdentical
*/
export declare const areIdentical: (object1: AnyObject, object2: AnyObject, excludedKeys?: string[]) => boolean;