Show More
Commit Description:
fig bugs in login report
Commit Description:
fig bugs in login report
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_wks-define.js
| 9 lines
| 417 B
| application/javascript
| JavascriptLexer
|
r789 | var global = require('./_global'); | |||
var core = require('./_core'); | ||||
var LIBRARY = require('./_library'); | ||||
var wksExt = require('./_wks-ext'); | ||||
var defineProperty = require('./_object-dp').f; | ||||
module.exports = function (name) { | ||||
var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {}); | ||||
if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); | ||||
}; | ||||