简体中文
Appearance
提取对象属性并构造成一个新的对象。
import { pick } from 'rattail' pick({ a: 1, b: 2, c: 3 }, ['a', 'c']) // return { a: 1, c: 3 }
object
keys
string[]