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.
12 lines
384 B
12 lines
384 B
# `Object.entries` _(ext/object/entries)_
|
|
|
|
[Object.entries](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries) implementation.
|
|
|
|
Returns native `Object.entries` if it's implemented, otherwise library implementation is returned
|
|
|
|
```javascript
|
|
const entries = require("ext/object/entries");
|
|
|
|
entries({ foo: "bar" }); // [["foo", "bar"]]
|
|
```
|