tdesign-mobile-vue
Version:
tdesign-mobile-vue
40 lines (34 loc) • 774 B
JavaScript
/**
* tdesign v1.7.0
* (c) 2024 TDesign Group
* @license MIT
*/
import './dep-8bf3054e.mjs';
import { t as toString_1 } from './dep-8140c29b.mjs';
var toString = toString_1;
/** Used to generate unique IDs. */
var idCounter = 0;
/**
* Generates a unique ID. If `prefix` is given, the ID is appended to it.
*
* @static
* @since 0.1.0
* @memberOf _
* @category Util
* @param {string} [prefix=''] The value to prefix the ID with.
* @returns {string} Returns the unique ID.
* @example
*
* _.uniqueId('contact_');
* // => 'contact_104'
*
* _.uniqueId();
* // => '105'
*/
function uniqueId(prefix) {
var id = ++idCounter;
return toString(prefix) + id;
}
var uniqueId_1 = uniqueId;
export { uniqueId_1 as u };
//# sourceMappingURL=dep-d8e1b282.mjs.map