UNPKG

wigjs

Version:

Minimalistic, scalable, extensible, dependency-less Front-end factory for HTML5 applications

9 lines 215 B
/** * Generates a new unique string based on the * provided prefix and the latest Id. * @param {string} prefix * @returns {string} */ env.generateID = function (prefix) { return ((prefix || 0) + Id++); };