FLUJOS/VISUALIZACION/node_modules/underscore/amd/uniqueId.js
2025-11-07 00:06:12 +01:00

13 lines
283 B
JavaScript
Executable file

define(function () {
// Generate a unique integer id (unique within the entire client session).
// Useful for temporary DOM ids.
var idCounter = 0;
function uniqueId(prefix) {
var id = ++idCounter + '';
return prefix ? prefix + id : id;
}
return uniqueId;
});