Files
lodash/uniqueId.js
John-David Dalton 6cb3460fce Remove semicolons.
2017-02-05 22:22:04 -08:00

28 lines
540 B
JavaScript

import toString from './toString.js'
/** Used to generate unique IDs. */
let idCounter = 0
/**
* Generates a unique ID. If `prefix` is given, the ID is appended to it.
*
* @since 0.1.0
* @category Util
* @param {string} [prefix=''] The value to prefix the ID with.
* @returns {string} Returns the unique ID.
* @see random
* @example
*
* uniqueId('contact_')
* // => 'contact_104'
*
* uniqueId()
* // => '105'
*/
function uniqueId(prefix) {
const id = ++idCounter
return toString(prefix) + id
}
export default uniqueId