source: frontend/node_modules/underscore/cjs/uniqueId.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 250 bytes
Line 
1// Generate a unique integer id (unique within the entire client session).
2// Useful for temporary DOM ids.
3var idCounter = 0;
4function uniqueId(prefix) {
5 var id = ++idCounter + '';
6 return prefix ? prefix + id : id;
7}
8
9module.exports = uniqueId;
Note: See TracBrowser for help on using the repository browser.