mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
37 lines
979 B
JavaScript
Executable File
37 lines
979 B
JavaScript
Executable File
(function(global, $){
|
|
|
|
var codiad = global.codiad;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Parse JSEND Formatted Returns
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
codiad.jsend = {
|
|
|
|
parse: function(d) { // (Data)
|
|
var obj = $.parseJSON(d);
|
|
|
|
if( obj !== undefined && obj !== null ) {
|
|
|
|
return;
|
|
}
|
|
|
|
if (obj.debug !== undefined && Array.isArray(obj.debug)) {
|
|
var debug = obj.debug.join('\nDEBUG: ');
|
|
if(debug !== '') {
|
|
debug = 'DEBUG: ' + debug;
|
|
}
|
|
console.log(debug);
|
|
}
|
|
if (obj.status == 'error') {
|
|
codiad.message.error(obj.message);
|
|
return 'error';
|
|
} else {
|
|
return obj.data;
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
})(this, jQuery);
|