.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / uid.js
1 var id = 0;
2 var postfix = Math.random();
3
4 module.exports = function (key) {
5   return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
6 };