object-keys-x

3.1.2 • Public • Published

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

object-keys-x

An ES6 Object.keys shim.

module.exportsArray

This method returns an array of a given object's own enumerable properties, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well).

Kind: Exported member
Returns: Array - An array of strings that represent all the enumerable properties of the given object.

Param Type Description
obj * The object of which the enumerable own properties are to be returned.

Example

import objectKeys from 'object-keys-x';
 
const obj = {
  arr: [],
  bool: true,
  null: null,
  num: 42,
  obj: {},
  str: 'boz',
  undefined: void 0,
};
 
console.log(objectKeys(obj)); // ['arr', 'bool', 'null', 'num', 'obj', 'str', 'undefined']

Package Sidebar

Install

npm i object-keys-x

Weekly Downloads

418

Version

3.1.2

License

MIT

Unpacked Size

401 kB

Total Files

11

Last publish

Collaborators

  • xotic750