Updating build artifacts

This commit is contained in:
Jim Cowart 2012-01-15 21:52:22 -05:00
parent dface81693
commit efb1d5cb0c
5 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
postal.addWireTap(function(data, envelope) {
var all = _.extend(envelope, { data: data });
if(!JSON) {
throw "This browser or environment does provide JSON support";
throw "This browser or environment does not provide JSON support";
}
try {
console.log(JSON.stringify(all));

View file

@ -1 +1 @@
postal.addWireTap(function(a,b){var c=_.extend(b,{data:a});if(!JSON)throw"This browser or environment does provide JSON support";try{console.log(JSON.stringify(c))}catch(d){try{c.data=d,console.log(JSON.stringify(c))}catch(e){console.log("Unable to parse data to JSON: "+d)}}})
postal.addWireTap(function(a,b){var c=_.extend(b,{data:a});if(!JSON)throw"This browser or environment does not provide JSON support";try{console.log(JSON.stringify(c))}catch(d){try{c.data=d,console.log(JSON.stringify(c))}catch(e){console.log("Unable to parse data to JSON: "+d)}}})

Binary file not shown.

View file

@ -2,7 +2,7 @@ module.exports = function(postal) {
postal.addWireTap(function(data, envelope) {
var all = _.extend(envelope, { data: data });
if(!JSON) {
throw "This browser or environment does provide JSON support";
throw "This browser or environment does not provide JSON support";
}
try {
console.log(JSON.stringify(all));