@stdlib/utils
Version:
Standard utilities.
25 lines (17 loc) • 455 B
Plain Text
{{alias}}( value )
Returns an array of an object's own and inherited 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 property names and symbols.
Examples
--------
> var props = {{alias}}( [] )
See Also
--------