Skip to content

Instantly share code, notes, and snippets.

@johnstew
Created February 10, 2013 17:48
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 johnstew/4750398 to your computer and use it in GitHub Desktop.
Save johnstew/4750398 to your computer and use it in GitHub Desktop.
JavaScript Namespace to avoid object/method collisions with other libs.
if(!com_yourname)
com_yourname = {};
else if (typeof (com_yourname) != "object")
throw new Error("com_yourname is not an object");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment