CliSite/commands/clear.ts
2022-06-12 09:38:38 +02:00

5 lines
90 B
TypeScript

function clear(buffer:string):string {
buffer = "";
return "";
}
export { clear };