baorui/src/utils/format.ts

5 lines
96 B
TypeScript
Raw Normal View History

2024-10-31 00:59:51 +08:00
// 示例方法,没有实际意义
export function trim(str: string) {
return str.trim();
}