You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

entries.md 384B

Object.entries (ext/object/entries)

Object.entries implementation.

Returns native Object.entries if it’s implemented, otherwise library implementation is returned

const entries = require("ext/object/entries");

entries({ foo: "bar" }); // [["foo", "bar"]]