2018-08-24 18:09:42 +02:00

5 lines
158 B
JavaScript

var id = 0
, px = Math.random();
module.exports = function(key){
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
};