13 lines
308 B
TypeScript
13 lines
308 B
TypeScript
/**
|
|
* 工具函数统一导出
|
|
*/
|
|
|
|
// 数据验证
|
|
export { isExternal, isValidURL, isEmail, isMobile, VALIDATORS } from "./validate";
|
|
|
|
// 数据格式化
|
|
export { formatGrowthRate, formatFileSize, formatNumber, formatCurrency } from "./format";
|
|
|
|
// 文件下载
|
|
export { downloadFile } from "./download";
|