mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-24 12:39:04 +01:00
19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
|
var JX = require('javelin').JX;
|
||
|
|
||
|
JX.install('AphlictIDGenerator', {
|
||
|
|
||
|
members : {
|
||
|
_next : 0,
|
||
|
|
||
|
generateNext : function() {
|
||
|
this._next = ((this._next + 1) % 1000000000000);
|
||
|
return this._next;
|
||
|
},
|
||
|
|
||
|
getTotalCount : function() {
|
||
|
return this._next;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|