marko/lib/uniqueId-browser.js
Patrick Steele-Idem cf39d8a06d Cleanup
2014-03-26 15:03:42 -06:00

5 lines
87 B
JavaScript

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