mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-12-12 19:36:45 +00:00
chore: update dependencies
This commit is contained in:
9
node_modules/underscore/cjs/uniqueId.js
generated
vendored
Normal file
9
node_modules/underscore/cjs/uniqueId.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
// 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;
|
||||
}
|
||||
|
||||
module.exports = uniqueId;
|
||||
Reference in New Issue
Block a user