All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.uuid.index.mjs Maven / Gradle / Ivy

The newest version!
// src/uuid/index.ts
var lastIds = {};
function uuid(prefix = "pui_id_") {
  if (!lastIds.hasOwnProperty(prefix)) {
    lastIds[prefix] = 0;
  }
  lastIds[prefix]++;
  return `${prefix}${lastIds[prefix]}`;
}
export {
  uuid
};
//# sourceMappingURL=index.mjs.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy