time-to-botec

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

repl.txt (425B)


      1 
      2 {{alias}}( value )
      3     Returns an object's own property descriptors.
      4 
      5     If provided `null` or `undefined`, the function returns an empty object.
      6 
      7     Parameters
      8     ----------
      9     value: any
     10         Input value.
     11 
     12     Returns
     13     -------
     14     desc: Object
     15         Property descriptors.
     16 
     17     Examples
     18     --------
     19     > var obj = { 'a': 'b' };
     20     > var desc = {{alias}}( obj )
     21     { 'a': {...} }
     22 
     23     See Also
     24     --------
     25