mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 13:59:37 +08:00
8 lines
105 B
TypeScript
8 lines
105 B
TypeScript
import { v4 as _uuidV4 } from 'uuid'
|
|
|
|
const uuidv4 = () => {
|
|
return _uuidV4()
|
|
}
|
|
|
|
export default uuidv4
|