(config: PreprocessConfig)
| 71 | } |
| 72 | |
| 73 | function hasAnyEnabled(config: PreprocessConfig): boolean { |
| 74 | return ( |
| 75 | config.dataCleaning !== false || |
| 76 | config.mergeConsecutive || |
| 77 | config.blacklistKeywords.length > 0 || |
| 78 | config.denoise || |
| 79 | config.desensitize |
| 80 | ) |
| 81 | } |
| 82 | |
| 83 | // ==================== 策略实现 ==================== |
| 84 |
no outgoing calls
no test coverage detected