Version 1
[yaffs-website] / node_modules / core-js / modules / _uid.js
1 var id = 0
2   , px = Math.random();
3 module.exports = function(key){
4   return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
5 };