blob: 384c124ef5ba9f84d04ffaceb2a5c6a2ec0bfa17 [file] [log] [blame]
var id = 0;
var postfix = Math.random();
module.exports = function (key) {
return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
};