You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EnumerableOwnNames.js 423B

12345678910111213141516171819
  1. 'use strict';
  2. var GetIntrinsic = require('../GetIntrinsic');
  3. var $TypeError = GetIntrinsic('%TypeError%');
  4. var keys = require('object-keys');
  5. var Type = require('./Type');
  6. // https://www.ecma-international.org/ecma-262/6.0/#sec-enumerableownnames
  7. module.exports = function EnumerableOwnNames(O) {
  8. if (Type(O) !== 'Object') {
  9. throw new $TypeError('Assertion failed: Type(O) is not Object');
  10. }
  11. return keys(O);
  12. };