(value: string)
| 103 | } |
| 104 | |
| 105 | function isMeaningfulReadableIdentifier(value: string): boolean { |
| 106 | if (!value) { |
| 107 | return false; |
| 108 | } |
| 109 | return !/^[\w.]+:id\/[\w.-]+$/i.test(value) && !/^_?NS:\d+$/i.test(value); |
| 110 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…