(symbolName: string)
| 79 | } |
| 80 | |
| 81 | export const getSymbolHash = (symbolName: string) => { |
| 82 | const index = symbolName.lastIndexOf('_'); |
| 83 | if (index > -1) { |
| 84 | return symbolName.slice(index + 1); |
| 85 | } |
| 86 | return symbolName; |
| 87 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…