time-to-botec

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

repl.txt (785B)


      1 
      2 {{alias}}( value[, level] )
      3     Returns an array of an object's inherited enumerable property names and
      4     symbols.
      5 
      6     Property order is not guaranteed, as object property enumeration is not
      7     specified according to the ECMAScript specification. In practice, however,
      8     most engines use insertion order to sort an object's properties, thus
      9     allowing for deterministic extraction.
     10 
     11     If provided `null` or `undefined`, the function returns an empty array.
     12 
     13     Parameters
     14     ----------
     15     value: any
     16         Input value.
     17 
     18     level: integer (optional)
     19         Inheritance level.
     20 
     21     Returns
     22     -------
     23     props: Array
     24         List of an object's inherited enumerable properties.
     25 
     26     Examples
     27     --------
     28     > var props = {{alias}}( {} )
     29 
     30     See Also
     31     --------
     32