(str: string)
| 9 | const prevValueCache = new WeakMap<any, any>(); // stores a previous value for a deep equal comparison (used with the deepCompareReturnPrev function) |
| 10 | |
| 11 | function isBlank(str: string): boolean { |
| 12 | return str == null || str == ""; |
| 13 | } |
| 14 | |
| 15 | function isLocalConnName(connName: string): boolean { |
| 16 | if (isBlank(connName)) { |
no outgoing calls
no test coverage detected