* Create a snapshot of a Load instance * @returns {Load}
()
| 994 | * @returns {Load} |
| 995 | */ |
| 996 | clone() { |
| 997 | const newEnv = this.env.clone(); |
| 998 | const copy = new Load(this.options, newEnv); |
| 999 | |
| 1000 | return Util.extendDeep(copy, this); |
| 1001 | } |
| 1002 | |
| 1003 | /** |
| 1004 | * <p>Initialize a parameter from the command line or process environment</p> |
nothing calls this directly
no test coverage detected