UNPKG

askexperts

Version:

AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol

12 lines 244 B
/** * Node.js implementation of UUID generation */ import crypto from 'crypto'; /** * Generate a UUID v4 * @returns A random UUID string */ export function generateUUID() { return crypto.randomUUID(); } //# sourceMappingURL=node.js.map