marko/lib/uniqueId-browser.js

5 lines
89 B
JavaScript

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