Created
November 15, 2012 21:08
-
-
Save JiriChara/4081280 to your computer and use it in GitHub Desktop.
Javascript Namespaces
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 || {}; | |
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[parts[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