GoScrobble/web/node_modules/ext/object/entries/is-implemented.js

7 lines
139 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
"use strict";
module.exports = function () {
try { return Object.entries({ foo: 12 })[0][0] === "foo"; }
catch (e) { return false; }
};