time-to-botec

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

repl.txt (783B)


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