(data: string, config: Config.Service)
| 1393 | // ============================================================================= |
| 1394 | |
| 1395 | const isFileId = (data: string, config: Config.Service): boolean => |
| 1396 | Predicate.isNotUndefined(config.fileIdPrefixes) && config.fileIdPrefixes.some((prefix) => data.startsWith(prefix)) |
| 1397 | |
| 1398 | const getItemId = ( |
| 1399 | part: |
no outgoing calls
no test coverage detected
searching dependent graphs…