UNPKG

@azure/communication-sms

Version:

SDK for Azure Communication SMS service which facilitates the sending of SMS messages.

17 lines 418 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { randomUUID } from "@azure/core-util"; // This is used as a workaround to be able to stub generateUuid // during testing. /** * Generated Universally Unique Identifier * * @returns RFC4122 v4 UUID. * @internal */ export class Uuid { static generateUuid() { return randomUUID(); } } //# sourceMappingURL=uuid.js.map