First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
class StringBuilder
{
_array: string[] = [];
append(value: any) {
if (typeof(value) === "string")
{
this._array.push(value);
} else {
this._array.push(value+"");
}
return this;
}
toString(): string {
return this._array.join('');
}
}
export default StringBuilder;