Files
pjax/lib/uniqueid.js
Behind The Math 2e459fb7bc Prettier fixes
2019-02-11 23:17:28 -05:00

9 lines
173 B
JavaScript

module.exports = (function() {
var counter = 0;
return function() {
var id = "pjax" + new Date().getTime() + "_" + counter;
counter++;
return id;
};
})();