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