Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Functions

Export assignment propertiesIn

  • propertiesIn(value: any): Array<string | symbol>
  • Returns an array of an object's own and inherited property names and symbols.

    Notes

    • If provided null or undefined, the function returns an empty array.

    Parameters

    • value: any

      input object

    Returns Array < string | symbol >

    a list of own and inherited property names and symbols

    Example

    var props = propertiesIn( [] );
    // returns [...]