Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Functions

Export assignment objectValues

  • objectValues(obj: any): Array<any>
  • Returns an array of an object's own 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

    var obj = {
        'beep': 'boop',
        'foo': 'bar'
    };
    
    var vals = objectValues( obj );
    // e.g., returns [ 'boop', 'bar' ]