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>
962 B
962 B
pickBy
创建一个新对象,该对象由满足条件的属性组成。
该函数接受一个对象和一个谓词函数,并返回一个新对象,该对象仅包含谓词函数返回 true
的属性。
签名
function pickBy<T extends Record<string, any>>(
obj: T,
shouldPick: (value: T[keyof T], key: keyof T) => boolean
): Partial<T>;
参数
obj
(T
): 要从中挑选属性的对象。shouldPick
((value: T[keyof T], key: keyof T) => boolean
): 一个谓词函数,确定是否应挑选属性。 它以属性的键和值作为参数,返回true
表示应挑选该属性,返回false
表示不应挑选。
返回值
(Partial<T>
): 一个由满足条件的属性组成的新对象。
示例
const obj = { a: 1, b: 'pick', c: 3 };
const shouldPick = (value, key) => typeof value === 'string';
const result = pickBy(obj, shouldPick);
// result 将会是 { b: 'pick' }