UNPKG

paretojs

Version:

An extremely small, intuitive and fast functional utility library for JavaScript

11 lines (9 loc) 232 B
import prop from "../src/extra/prop"; it("gets the property of an object", () => { const obj = { label: "custom label", id: 3 }; expect(prop("label", obj)).toBe("custom label"); expect(prop("id", obj)).toBe(3); });