Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Functions

Export assignment objectValuesIn

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

    Notes

    • Value 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 object

    Returns Array < any >

    value array

    Example

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