aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/_uid.js
blob: 3be4196bb736370adb1198ce36a7cf0473c8e83f (plain)
1
2
3
4
5
var id = 0
  , px = Math.random();
module.exports = function(key){
  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
};