Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "utils/keys-in/docs/types/index.d"

Index

Functions

Functions

Export assignment keysIn

  • keysIn(obj: any): Array<string>
  • Returns an array of an object's own and inherited enumerable property names.

    Notes

    • Name order is not guaranteed, as object key enumeration is not specified according to the ECMAScript specification. In practice, however, most engines use insertion order to sort an object's keys, thus allowing for deterministic extraction.

    Parameters

    • obj: any

      input value

    Returns Array < string >

    key array

    Example

    function Foo() {
        this.beep = 'boop';
        return this;
    }
    
    Foo.prototype.foo = 'bar';
    
    var obj = new Foo();
    
    var keys = keysIn( obj );
    // e.g., returns [ 'beep', 'foo' ]