blob: 15cbbb98c1c3318134603ed112f90e01764e6df1 [file] [log] [blame]
Scott Baker999edc62014-06-18 15:40:56 -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}