UNPKG

191 BJavaScriptView Raw
1var id = 0;
2
3/**
4 * Returns a number that greater than the privous one, starting form `1`.
5 *
6 * @returns {number}
7 */
8function uuid() {
9 id += 1;
10 return id;
11}
12
13module.exports = uuid;