Skip to content

Instantly share code, notes, and snippets.

@smith
Created September 23, 2009 01:16
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 smith/191612 to your computer and use it in GitHub Desktop.
Save smith/191612 to your computer and use it in GitHub Desktop.
<script runat="server">
var cc = Components.classes,
ci = Components.interfaces;
function w(o) {
for (var i in o) { document.write(i + "<br />"); }
}
document.write("-- Components.classes -- <br />");
w(cc);
document.write("-- Components.interfaces -- <br />");
w(ci);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment