UNPKG

x-http-client

Version:

An http client to simplify sending requests (HTTP & JSONP) in the browser.

14 lines (11 loc) 191 B
var id = 0; /** * Returns a number that greater than the privous one, starting form `1`. * * @returns {number} */ function uuid() { id += 1; return id; } module.exports = uuid;