source:
frontend/node_modules/underscore/modules/uniqueId.js
| Last change on this file was 9af201e, checked in by , 11 days ago | |
|---|---|
|
|
| File size: 237 bytes | |
| Line | |
|---|---|
| 1 | // Generate a unique integer id (unique within the entire client session). |
| 2 | // Useful for temporary DOM ids. |
| 3 | var idCounter = 0; |
| 4 | export default function uniqueId(prefix) { |
| 5 | var id = ++idCounter + ''; |
| 6 | return prefix ? prefix + id : id; |
| 7 | } |
Note:
See TracBrowser
for help on using the repository browser.
