UNPKG

create-lbgcli1

Version:

前端脚手架模板

10 lines (8 loc) 250 B
// Generate a unique integer id (unique within the entire client session). // Useful for temporary DOM ids. var idCounter = 0; function uniqueId(prefix) { var id = ++idCounter + ''; return prefix ? prefix + id : id; } module.exports = uniqueId;