UNPKG

reakit-utils

Version:

Reakit utils

6 lines (4 loc) 134 B
import { omit } from "../omit"; test("omit", () => { expect(omit({ a: "a", b: "b", c: "c" }, ["a", "b"])).toEqual({ c: "c" }); });