* Create a snapshot of an Env. * @returns {Env}
()
| 848 | * @returns {Env} |
| 849 | */ |
| 850 | clone() { |
| 851 | const copy = new Env(); |
| 852 | copy.lookups = Util.cloneDeep(this.lookups); |
| 853 | |
| 854 | return copy; |
| 855 | } |
| 856 | |
| 857 | /** |
| 858 | * <p>Initialize a parameter from the command line or process environment</p> |
no test coverage detected