UNPKG

@shopify/polaris

Version:

Shopify’s product component library

20 lines (19 loc) 464 B
import { isObject } from './is-object'; export function pluckDeep(obj, key) { if (!obj) { return null; } const keys = Object.keys(obj); for (const currKey of keys) { if (currKey === key) { return obj[key]; } if (isObject(obj[currKey])) { const plucked = pluckDeep(obj[currKey], key); if (plucked) { return plucked; } } } return null; }