* Detect whether `name` has a definition. Equivalent to * `get(name) != null`.
(name)
| 12960 | |
| 12961 | |
| 12962 | has(name) { |
| 12963 | return this.current.hasOwnProperty(name) || this.builtins.hasOwnProperty(name); |
| 12964 | } |
| 12965 | /** |
| 12966 | * Get the current value of a name, or `undefined` if there is no value. |
| 12967 | * |
no outgoing calls
no test coverage detected