CliSite/commands/clear.ts

5 lines
90 B
TypeScript
Raw Normal View History

2022-06-12 09:38:38 +02:00
function clear(buffer:string):string {
buffer = "";
return "";
}
export { clear };