mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-17 06:30:23 +00:00
Updating build artifacts
This commit is contained in:
parent
dface81693
commit
efb1d5cb0c
5 changed files with 3 additions and 3 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Binary file not shown.
2
lib/browser/postal.diagnostics.min.js
vendored
2
lib/browser/postal.diagnostics.min.js
vendored
|
|
@ -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.
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in a new issue