django-vue3-admin-web/node_modules/es5-ext/object/entries/is-implemented.js
2025-10-20 21:21:14 +08:00

7 lines
139 B
JavaScript

"use strict";
module.exports = function () {
try { return Object.entries({ foo: 12 })[0][0] === "foo"; }
catch (e) { return false; }
};