blob: 15cbbb98c1c3318134603ed112f90e01764e6df1 [file] [log] [blame]
Scott Baker95d6c5c2014-07-07 21:54:35 -07001var ObjectIdCounter = 0;
2
3var ObjectId = function() {
4 this.counter = (ObjectIdCounter += 1);
5 this.str = this.counter;
6 this.initialize();
7 return this.counter;
8};
9
10ObjectId.prototype.initialize = function() {
11 return this.counter;
12}