UNPKG

@surveycake/utils

Version:

SurveyCake Javascript Utils

9 lines (8 loc) 289 B
/** * Check if a string is a valid Clarity ID * Clarity ID format: alphanumeric random string with 10 characters * * @param str - The string to validate * @returns Returns true if the string is a valid Clarity ID */ export declare function isClarityId(str: string): boolean;