_uid.js 158 B

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