time-to-botec

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

repl.txt (511B)


      1 
      2 {{alias}}( value, property )
      3     Tests if an object's own property is enumerable.
      4 
      5     Parameters
      6     ----------
      7     value: any
      8         Value to test.
      9 
     10     property: any
     11         Property to test.
     12 
     13     Returns
     14     -------
     15     bool: boolean
     16         Boolean indicating if an object's own property is enumerable.
     17 
     18     Examples
     19     --------
     20     > var beep = { 'boop': true };
     21     > var bool = {{alias}}( beep, 'boop' )
     22     true
     23     > bool = {{alias}}( beep, 'hasOwnProperty' )
     24     false
     25 
     26     See Also
     27     --------
     28