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
/
Base namespace.js
4 lines
•
251 B
JavaScript
View Raw
1
2
3
4
this
[
"MyApp"
] =
this
[
"MyApp"
] || {};
this
[
"MyApp"
][
"Templates"
] =
this
[
"MyApp"
][
"Templates"
] || {};
this
[
"MyApp"
][
"Templates"
][
"App"
] =
this
[
"MyApp"
][
"Templates"
][
"App"
] || {};
this
[
"MyApp"
][
"Templates"
][
"App"
][
"Main"
] = function() {
return
"Main"
; };