UNPKG
es6-symbol
Version:
latest (3.1.4)
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
2.0.1
2.0.0
1.0.0
0.1.1
0.1.0
0.0.0
ECMAScript 6 Symbol polyfill
github.com/medikoo/es6-symbol
medikoo/es6-symbol
es6-symbol
/
implement.js
11 lines
(9 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
if
(!
require
(
"./is-implemented"
)()) {
Object
.
defineProperty
(
require
(
"ext/global-this"
),
"Symbol"
, {
value
:
require
(
"./polyfill"
),
configurable
:
true
,
enumerable
:
false
,
writable
:
true
}); }