Tumortisch-Dist/resources/app/node_modules/es5-ext/object/entries/is-implemented.js

10 lines
144 B
JavaScript
Raw Permalink Normal View History

2021-06-15 16:00:08 +02:00
"use strict";
module.exports = function () {
try {
return Object.entries({ foo: 12 })[0][0] === "foo";
} catch (e) {
return false;
}
};