mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
628 B
628 B
pick
创建一个由指定属性组成的新对象。
该函数接受一个对象和一个键数组,并返回一个新对象,该对象仅包含与指定键对应的属性。
签名
function pick<T extends Record<string, any>, K extends keyof T>(obj: T, keys: K[]): Pick<T, K>;
参数
obj
(T
): 要提取属性的对象。keys
(K[]
): 要从对象中提取的键数组。
返回值
(Pick<T, K>
): 一个包含了指定键的新对象。
示例
const obj = { a: 1, b: 2, c: 3 };
const result = pick(obj, ['a', 'c']);
// result 将会是 { a: 1, c: 3 }