PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/underscore/cjs

Просмотр файла: uniqueId.js

// 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;

Выполнить команду


Для локальной разработки. Не используйте в интернете!