Move to subdirectory

This commit is contained in:
David Walsh
2019-07-19 12:43:02 -04:00
parent 1cf300f0c4
commit 8026e28d43
7400 changed files with 0 additions and 510024 deletions

View File

@@ -0,0 +1,12 @@
function Topic (name) {
this.name = name;
this.bag = true;
this.type = "";
}
Array.prototype.indexOfTopic = function(name) {
for (var i = 0; i < this.length; i++)
if (this[i].name == name)
return i;
return -1;
}