massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / uid.js
1 var uncurryThis = require('../internals/function-uncurry-this');
2
3 var id = 0;
4 var postfix = Math.random();
5 var toString = uncurryThis(1.0.toString);
6
7 module.exports = function (key) {
8   return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
9 };