client-id.ts 160 B

1234567
  1. import { v4 as uuid } from 'uuid'
  2. // Wrap uuid in an object method so that it can be stubbed
  3. const clientId = uuid()
  4. export default {
  5. get: () => clientId,
  6. }