mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-21 16:48:13 +00:00
将 electron.js 中的 PDF 导出、渲染器辅助函数和工具函数拆分为独立模块: - electron/lib/pdf-export.js: PDF 导出相关功能 - electron/lib/renderer.js: 渲染器辅助函数 - electron/lib/other.js: 平台检测和 URL 验证常量 此重构提高了代码可维护性,减少了主文件的复杂度。
16 lines
322 B
JavaScript
Vendored
16 lines
322 B
JavaScript
Vendored
// 平台检测常量
|
|
const isMac = process.platform === 'darwin'
|
|
const isWin = process.platform === 'win32'
|
|
|
|
// URL 和调用验证正则
|
|
const allowedUrls = /^(?:https?|mailto|tel|callto):/i;
|
|
const allowedCalls = /^(?:mailto|tel|callto):/i;
|
|
|
|
module.exports = {
|
|
isMac,
|
|
isWin,
|
|
|
|
allowedUrls,
|
|
allowedCalls
|
|
}
|