Home Reference Source

ts_temp/uniqueId.js

let idCounter = 0;
/**
 * Generates a unique ID.
 *
 * @returns {number} Returns the unique ID.
 */
export default () => ++idCounter;