import * as P from "flurp/pojo";const getEntries = P.entries("x");getEntries({x: 5, y: 10}); // [["x", 5], ["y", 10]]
Example