Every line of 'jquery json encode' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
92 function _encode(json) {}
5 function json_encode(v) { 6 switch (typeof v) { 7 case 'string': 8 case 'number': 9 case 'boolean': 10 return json_encodeString(v); 11 case 'object': 12 if (v) { 13 if (v instanceof Array) { 14 return json_encodeArray(v); 15 } else { 16 return json_encodeObject(v); 17 } 18 } else return 'null'; 19 } 20 return 'null'; 21 }
60 function json(data) { 61 switch (data) { 62 case '__NULL__': 63 case '__BLANK_ARRAY__': 64 return data === '__NULL__' ? 'null' : '[]'; 65 default: 66 return JSON.stringify(data || null, null, ' ') 67 .replace(/\n/g, '') 68 .replace(/^(\{|\[) /, '$1'); 69 } 70 }
137 function encode(object) { 138 if (typeof object === 'object') { 139 for (var property in object) { // jshint ignore:line 140 object[property] = encode(object[property]); 141 } 142 return object; 143 } 144 if (object !== null && object !== undefined) { 145 return encodeURIComponent(object); 146 } 147 return object; 148 }
112 encode(json) { return super.encode(JSON.stringify(json)); }
6 function encode(obj){ 7 var query = []; 8 forOwn(obj, function(val, key){ 9 query.push( key +'='+ encodeURIComponent(val) ); 10 }); 11 return (query.length)? '?'+ query.join('&') : ''; 12 }
40 function getJsonString(obj) { 41 try { 42 return JSON.stringify(obj); 43 } catch(e) {} 44 return ""; 45 }
85 function encode(data) { 86 return encodeURI(data); 87 }
127 function encode(val) { 128 // convert undefined to null to avoid issues with JSON.parse 129 return JSON.stringify(_.isUndefined(val) ? null : val); 130 }
22 function stringifyJSON(data: any): string { 23 return JSON.stringify(data, null, " "); 24 }