mirror of
https://github.com/tvytlx/ai-agent-deep-dive.git
synced 2026-04-05 16:44:48 +08:00
Add extracted source directory and README navigation
This commit is contained in:
29
extracted-source/node_modules/@azure/msal-node/dist/crypto/GuidGenerator.mjs
generated
vendored
Normal file
29
extracted-source/node_modules/@azure/msal-node/dist/crypto/GuidGenerator.mjs
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
/*! @azure/msal-node v3.8.1 2025-10-29 */
|
||||
'use strict';
|
||||
import { v4 } from 'uuid';
|
||||
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
class GuidGenerator {
|
||||
/**
|
||||
*
|
||||
* RFC4122: The version 4 UUID is meant for generating UUIDs from truly-random or pseudo-random numbers.
|
||||
* uuidv4 generates guids from cryprtographically-string random
|
||||
*/
|
||||
generateGuid() {
|
||||
return v4();
|
||||
}
|
||||
/**
|
||||
* verifies if a string is GUID
|
||||
* @param guid
|
||||
*/
|
||||
isGuid(guid) {
|
||||
const regexGuid = /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
||||
return regexGuid.test(guid);
|
||||
}
|
||||
}
|
||||
|
||||
export { GuidGenerator };
|
||||
//# sourceMappingURL=GuidGenerator.mjs.map
|
||||
Reference in New Issue
Block a user