UNPKG

azure

Version:
18 lines (13 loc) 352 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. 'use strict'; var uuid = require('uuid'); /** * Generated UUID * * @return {string} RFC4122 v4 UUID. */ exports.generateUuid = function () { return uuid.v4(); }; exports = module.exports;