UNPKG
gulp-declare
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
0.0.1
0.0.0
Safely declare namespaces and set their properties
github.com/lazd/gulp-declare
lazd/gulp-declare
gulp-declare
/
test
/
expected
/
Assign as a property of a namespace.js
3 lines
•
165 B
JavaScript
View Raw
1
2
3
this
[
"MyApp"
] =
this
[
"MyApp"
] || {};
this
[
"MyApp"
][
"Templates"
] =
this
[
"MyApp"
][
"Templates"
] || {};
this
[
"MyApp"
][
"Templates"
][
"App"
] = function() {
return
"App"
; };