🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

get-own-enumerable-keys-x

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-own-enumerable-keys-x

Like Reflect.ownKeys but gets only enumerable properties.

2.1.2
latest
Source
npm
Version published
Weekly downloads
26
-53.57%
Maintainers
1
Weekly downloads
 
Created
Source

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

get-own-enumerable-keys-x

Like Reflect.ownKeys but gets only enumerable properties.

module.exports(target)Array

This method returns only the enumerable own keys of an object.

Kind: Exported function
Returns: Array - The enumerable own keys.
Throws:

  • typeError - If target is null or undefined.
ParamTypeDescription
targetObjectThe target.

Example

import getOwnEnumerableKeys from 'get-own-enumerable-keys-x';

const obj = {bar: 1, foo: 2};
Object.defineProperty(obj, Symbol('first'), {
  enumerable: false,
  value: 'first',
});

const symbol = Symbol('second');
Object.defineProperty(obj, symbol, {
  enumerable: true,
  value: 'second',
});

console.log(getOwnEnumerableKeys(obj)); // ['bar', 'foo', symbol]

Keywords

object

FAQs

Package last updated on 28 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts