hexo-blogger-xml
Version:
Import xml blogger to hexo
31 lines (26 loc) • 447 B
text/typescript
export default class {
private result = '';
constructor(str = '') {
this.result = str;
}
/**
* Append to previous string
* @param str
*/
append(str?: string) {
this.result += str;
return this;
}
/**
* Append in new line to previous string
* @param str
*/
appendLine(str?: string) {
this.result += '\n';
this.result += str;
return this;
}
toString() {
return this.result;
}
}