Frontend/25_01_07/mai/node_modules/own-keys/index.js

22 lines
583 B
JavaScript
Raw Normal View History

2025-01-28 10:38:27 +00:00
'use strict';
var GetIntrinsic = require('get-intrinsic');
var safePushApply = require('safe-push-apply');
var $ownKeys = GetIntrinsic('%Reflect.ownKeys%', true);
var $gOPN = GetIntrinsic('%Object.getOwnPropertyNames%', true);
var $gOPS = GetIntrinsic('%Object.getOwnPropertySymbols%', true);
var keys = require('object-keys');
/** @type {import('.')} */
module.exports = $ownKeys || function ownKeys(source) {
/** @type {(keyof typeof source)[]} */
var sourceKeys = ($gOPN || keys)(source);
if ($gOPS) {
safePushApply(sourceKeys, $gOPS(source));
}
return sourceKeys;
};