Blame view

src/utils/format.ts 96 Bytes
calmound authored
1
2
3
4
// 示例方法,没有实际意义
export function trim(str: string) {
  return str.trim();
}