time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (485B)


      1 
      2 {{alias}}( value )
      3     Returns an array of an object's own and inherited enumerable property names
      4     and symbols.
      5 
      6     If provided `null` or `undefined`, the function returns an empty array.
      7 
      8     Parameters
      9     ----------
     10     value: any
     11         Input value.
     12 
     13     Returns
     14     -------
     15     props: Array
     16         List of an object's own and inherited enumerable property names and
     17         symbols.
     18 
     19     Examples
     20     --------
     21     > var props = {{alias}}( [] )
     22 
     23     See Also
     24     --------
     25