Skip to content

Instantly share code, notes, and snippets.

@Ultrabenosaurus
Created November 28, 2014 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ultrabenosaurus/4b07cba9cb6b0323219a to your computer and use it in GitHub Desktop.
Save Ultrabenosaurus/4b07cba9cb6b0323219a to your computer and use it in GitHub Desktop.
Easily ensure JS namespacing is setup before you access it.
if (!Array.prototype.reduce)
{
Array.prototype.reduce = function(fun /*, initial*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
// no value to return if no initial value and an empty array
if (len == 0 && arguments.length == 1)
throw new TypeError();
var i = 0;
if (arguments.length >= 2)
{
var rv = arguments[1];
}
else
{
do
{
if (i in this)
{
rv = this[i++];
break;
}
// if array contains no values, no initial value to return
if (++i >= len)
throw new TypeError();
}
while (true);
}
for (; i < len; i++)
{
if (i in this)
rv = fun.call(null, rv, this[i], i, this);
}
return rv;
};
}
var ns = function(namespace){
return namespace.split('.').reduce(function(holder, name){
holder[name] = holder[name] || {};
return holder[name];
}, window);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment