marko/lib/uniqueId-browser.js
2014-04-29 22:21:43 -06:00

5 lines
88 B
JavaScript

var nextUniqueId = 0;
module.exports = function() {
return 'c' + nextUniqueId++;
};