* 注册格式模块
(module: FormatModule)
| 66 | * 注册格式模块 |
| 67 | */ |
| 68 | register(module: FormatModule): void { |
| 69 | this.formats.push(module) |
| 70 | // 按优先级排序(优先级数字越小越靠前) |
| 71 | this.formats.sort((a, b) => a.feature.priority - b.feature.priority) |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * 批量注册格式模块 |
no outgoing calls
no test coverage detected