26 lines
493 B
Plaintext
26 lines
493 B
Plaintext
|
|
{{alias}}( value )
|
|
Returns an array of an object's own and inherited non-enumerable property
|
|
names and symbols.
|
|
|
|
If provided `null` or `undefined`, the function returns an empty array.
|
|
|
|
Parameters
|
|
----------
|
|
value: any
|
|
Input value.
|
|
|
|
Returns
|
|
-------
|
|
props: Array
|
|
List of an object's own and inherited non-enumerable property names and
|
|
symbols.
|
|
|
|
Examples
|
|
--------
|
|
> var props = {{alias}}( [] )
|
|
|
|
See Also
|
|
--------
|
|
|