UNPKG

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