UNPKG

@tmlmobilidade/utils

Version:

This package provides a collection of common utility functions used across projects within the organization.

7 lines (6 loc) 144 B
/* * */ import { v4 as uuid } from 'uuid'; /* * */ export function generateRandomToken() { return Buffer.from(uuid()).toString('base64'); }