Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
33 lines (29 sloc)
632 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Used to generate unique IDs. */ | |
const idCounter = {} | |
/** | |
* 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='$lodash$') { | |
if (!idCounter[prefix]) { | |
idCounter[prefix] = 0 | |
} | |
const id =++idCounter[prefix] | |
if (prefix === '$lodash$') { | |
return `${id}` | |
} | |
return `${prefix}${id}` | |
} | |
export default uniqueId |