aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/internals/uid.js
blob: 384c124ef5ba9f84d04ffaceb2a5c6a2ec0bfa17 (plain)
1
2
3
4
5
6
var id = 0;
var postfix = Math.random();

module.exports = function (key) {
  return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
};