UNPKG

efficy-enterprise-api

Version:

The Efficy Enterprise API is developed for server-side usage in a Node.js environment (e.g. for integrations) and also bundled for usage inside an Efficy browser session for client-side JSON RPC requests.

10 lines 446 B
export default findDeep; /** * Find and return first (deep) nested object when all properties of the provided searchObject are equal * Inspired by https://pretagteam.com/question/finding-an-object-deep-in-a-nested-json-object * @param {object|Array} object * @param {object} searchObject * @returns {object} */ declare function findDeep(object: object | any[], searchObject: object): object; //# sourceMappingURL=findDeep.d.mts.map