* Get Command Line Arguments * * * This method allows you to retrieve the value of the specified command line argument. * * * * The argument is case sensitive, and must be of the form '--ARG_NAME=value' * * * @method getCmdLineArg * @param {s
(searchFor)
| 1035 | * @return {false|string} false if the argument was not found, the argument value if found |
| 1036 | */ |
| 1037 | getCmdLineArg(searchFor) { |
| 1038 | return this.env.getCmdLineArg(searchFor); |
| 1039 | } |
| 1040 | |
| 1041 | /** |
| 1042 | * <p>Get a Config Environment Variable Value</p> |
nothing calls this directly
no test coverage detected