Latest
Browser interest query
Test file is called index.html
diff --git a/latest/ExcludeAny.js b/latest/ExcludeAny.js
new file mode 100644
index 0000000..898d250
--- /dev/null
+++ b/latest/ExcludeAny.js
@@ -0,0 +1,17 @@
+
+var ExcludeAny = function ExcludeAny() {
+
+};
+
+ExcludeAny.prototype.decode = function(decoder) {
+		decoder.readStartElement(this.getElementLabel());
+		decoder.readEndElement();
+};
+
+
+ExcludeAny.prototype.encode = function( encoder) {
+		encoder.writeStartElement(this.getElementLabel());
+		encoder.writeEndElement();
+};
+
+ExcludeAny.prototype.getElementLabel=function() { return CCNProtocolDTags.Any; };