import { pick } from 'es-toolkit' const obj = { a: { b: { c: 42 } } } const c = pick(obj, ['a']) console.log(c) // 42