Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Index

Functions

Export assignment nonEnumerablePropertiesIn

  • nonEnumerablePropertiesIn(value: any): Array<string | symbol>
  • Returns an array of an object's own and inherited non-enumerable 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 non-enumerable property names and symbols

    Example

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