aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/uuid.ts
blob: 3eb06c773bae1afa77bc3dfaebeaf6e68fa2b475 (plain) (tree)































                                              
import * as short from 'short-uuid'

const translator = short()

function buildUUID () {
  return short.uuid()
}

function uuidToShort (uuid: string) {
  if (!uuid) return uuid

  return translator.fromUUID(uuid)
}

function shortToUUID (shortUUID: string) {
  if (!shortUUID) return shortUUID

  return translator.toUUID(shortUUID)
}

function isShortUUID (value: string) {
  if (!value) return false

  return value.length === translator.maxLength
}

export {
  buildUUID,
  uuidToShort,
  shortToUUID,
  isShortUUID
}