@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
15 lines • 455 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Uuid = void 0;
const core_util_1 = require("@azure/core-util");
// This is used as a workaround to be able to stub generateUuid
// during testing.
class Uuid {
static generateUuid() {
return (0, core_util_1.randomUUID)();
}
}
exports.Uuid = Uuid;
//# sourceMappingURL=uuid.js.map