Prettier fixes

This commit is contained in:
Behind The Math
2019-02-11 23:17:28 -05:00
parent 8386b355c9
commit 2e459fb7bc
16 changed files with 531 additions and 425 deletions

View File

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