We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63447e6 commit 9029e4cCopy full SHA for 9029e4c
packages/core-js/internals/uid.js
@@ -3,7 +3,7 @@ var uncurryThis = require('../internals/function-uncurry-this');
3
4
var id = 0;
5
var postfix = Math.random();
6
-var toString = uncurryThis(1.0.toString);
+var toString = uncurryThis(1.1.toString);
7
8
module.exports = function (key) {
9
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
0 commit comments