import * as P from "flurp/pojo";const justXY = P.pick(["x", "Y"], 0);justXY({ x: 3, y: 4, z: 5 }); // { x: 3, y: 4 }
Example