uid.js 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 var id = 0; var postfix = Math.random(); module.exports = function (key) { return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36); };