astro-ghostcms/.pnpm-store/v3/files/fa/0f863cad2b9d2c317a673a6d564...

18 lines
504 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var RequireObjectCoercible = require('es-abstract/2023/RequireObjectCoercible');
var callBound = require('call-bind/callBound');
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
var $push = callBound('Array.prototype.push');
module.exports = function entries(O) {
var obj = RequireObjectCoercible(O);
var entrys = [];
for (var key in obj) {
if ($isEnumerable(obj, key)) { // checks own-ness as well
$push(entrys, [key, obj[key]]);
}
}
return entrys;
};