@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
11 lines • 322 B
JavaScript
// 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.
export class Uuid {
static generateUuid() {
return randomUUID();
}
}
//# sourceMappingURL=uuid.js.map