Created
January 26, 2012 15:56
-
-
Save tyom/1683450 to your computer and use it in GitHub Desktop.
JS Namespace function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MYAPP = MYAPP || {}; | |
// Namespacing function. Simplifies the process of namespacing | |
// Usage: MYAPP.namespace('MYAPP.path.to.myModule'); or MYAPP.namespace('path.to.myModule'); | |
MYAPP.namespace = function(ns_string) { | |
var parts = ns_string.split('.'), | |
parent = MYAPP, | |
i; | |
// strip redundant leading global | |
if(parts[0] === 'MYAPP') { | |
parts = parts.slice(1); | |
} | |
for(i = 0; i < parts.length; i += 1) { | |
// create a property if it doesn't exist | |
if(typeof parent[parent[i]] === 'undefined') { | |
parent[parts[i]] = {}; | |
} | |
parent = parent[parts[i]]; | |
} | |
return parent; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment