Show More
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_wks.js
| 11 lines
| 358 B
| application/javascript
| JavascriptLexer
|
r789 | var store = require('./_shared')('wks'); | |||
var uid = require('./_uid'); | ||||
var Symbol = require('./_global').Symbol; | ||||
var USE_SYMBOL = typeof Symbol == 'function'; | ||||
var $exports = module.exports = function (name) { | ||||
return store[name] || (store[name] = | ||||
USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name)); | ||||
}; | ||||
$exports.store = store; | ||||