Diff returns the diff between the current env and the passed env
(other Env)
| 100 | |
| 101 | // Diff returns the diff between the current env and the passed env |
| 102 | func (env Env) Diff(other Env) *EnvDiff { |
| 103 | return BuildEnvDiff(env, other) |
| 104 | } |
| 105 | |
| 106 | // Fetch tries to get the value associated with the given 'key', or returns |
| 107 | // the provided default if none is set. |
no test coverage detected