5 lines
96 B
TypeScript
5 lines
96 B
TypeScript
|
// 示例方法,没有实际意义
|
||
|
export function trim(str: string) {
|
||
|
return str.trim();
|
||
|
}
|