section: Language, related to: Hash * $H([obj]) -> Hash * * Creates a [[Hash]] (which is synonymous to "map" or "associative array" * for our purposes). A convenience wrapper around the [[Hash]] constructor, with a safeguard * that lets you pass an existing [[Hash]] object and get it back
(object)
| 19 | * // -> 'Australia' |
| 20 | **/ |
| 21 | function $H(object) { |
| 22 | return new Hash(object); |
| 23 | }; |
| 24 | |
| 25 | /** section: Language |
| 26 | * class Hash |
no outgoing calls
no test coverage detected