Skip to content

Instantly share code, notes, and snippets.

@gregstewart
Created May 22, 2012 08:43
Show Gist options
  • Save gregstewart/2767657 to your computer and use it in GitHub Desktop.
Save gregstewart/2767657 to your computer and use it in GitHub Desktop.
Global Namespace checker - simplified (for Jasmine)
_global_namespace_things = [];
var _captured_global_namespace = this;
for (var prop in _captured_global_namespace) {
_global_namespace_things.push(prop);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment