gulp-declare
Version:
Safely declare namespaces and set their properties
5 lines • 309 B
JavaScript
this["Namespace"] = this["Namespace"] || {};
this["Namespace"]["App"] = this["Namespace"]["App"] || {};
this["Namespace"]["App"]["Main"] = function() { return "Main"; };
this["Namespace"]["App"]["Header"] = function() { return "Header"; };
this["Namespace"]["App"]["Footer"] = function() { return "Footer"; };