time-to-botec

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

repl.txt (581B)


      1 
      2 {{alias}}( value, property[, level] )
      3     Returns a property descriptor for an object's inherited property.
      4 
      5     If provided `null` or `undefined` or provided a non-existent property, the
      6     function returns `null`.
      7 
      8     Parameters
      9     ----------
     10     value: any
     11         Input value.
     12 
     13     property: string|symbol
     14         Property name.
     15 
     16     level: integer (optional)
     17         Inheritance level.
     18 
     19     Returns
     20     -------
     21     desc: Object|null
     22         Property descriptor.
     23 
     24     Examples
     25     --------
     26     > var desc = {{alias}}( {}, 'toString' )
     27     {...}
     28 
     29     See Also
     30     --------
     31