UNPKG

@azure/core-util

Version:
20 lines 759 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. var _a; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomUUID = randomUUID; const crypto_1 = require("crypto"); // NOTE: This is a workaround until we can use `globalThis.crypto.randomUUID` in Node.js 19+. const uuidFunction = typeof ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.crypto) === null || _a === void 0 ? void 0 : _a.randomUUID) === "function" ? globalThis.crypto.randomUUID.bind(globalThis.crypto) : crypto_1.randomUUID; /** * Generated Universally Unique Identifier * * @returns RFC4122 v4 UUID. */ function randomUUID() { return uuidFunction(); } //# sourceMappingURL=uuidUtils.js.map