()
| 3033 | var weakTypeTextMap; |
| 3034 | var weakNodeTextMap; |
| 3035 | function getWeakTypeTextMap() { |
| 3036 | if (weakTypeTextMap === undefined) { |
| 3037 | if (typeof WeakMap === "function") |
| 3038 | weakTypeTextMap = new WeakMap(); |
| 3039 | } |
| 3040 | return weakTypeTextMap; |
| 3041 | } |
| 3042 | function getWeakNodeTextMap() { |
| 3043 | if (weakNodeTextMap === undefined) { |
| 3044 | if (typeof WeakMap === "function") |
no outgoing calls
no test coverage detected
searching dependent graphs…