UNPKG
slightning-coco-widget--webpack
Version:
alpha (2.5.0-alpha.0)
latest (2.5.2)
2.5.2
2.5.1
2.5.0-alpha.0
2.4.1
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.1-alpha
2.0.0-alpha
1.0.2-alpha.5
1.0.2-alpha.4
1.0.2-alpha.3
1.0.2-alpha.2
1.0.2-alpha.1
1.0.2-alpha.0
1.0.1-alpha.1
1.0.1-alpha.0
1.0.0
SLIGHTNING 的 CoCo 控件框架 —— webpack 相关工具。
slightning-coco-widget--webpack
/
dist
/
runtime
/
cjs
/
bypass
/
get-global-var.js
7 lines
(6 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
getGlobalVar
= getGlobalVar;
function
getGlobalVar
(
name
) {
return
new
Function
(
"return window."
+ name.
replace
(
/_/g
,
""
))(); }