10 examples of 'angular parse json' in JavaScript

Every line of 'angular parse json' 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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
1function parse(json) {
2 try {
3 return JSON.parse(json);
4 } catch (err) {
5 return null;
6 }
7}
68function angularJson(projects: ProjectOptions[]): Object {
69 const angularJsonContent = JSON.parse(JSON.stringify(angularJsonBaseConfig));
70 projects.forEach(options => {
71 angularJsonContent.projects[options.name] = angularJsonProjectConfig(options);
72 });
73 return angularJsonContent;
74}
134function jsonParser(json) {
135 // Number fo indentation
136 n = 2;
137 // Start the loop
138 json.forEach(function(root){
139 root.child.forEach(function(child){
140 // If line doesn't have HB tag
141 if(root.tags.length < 1){
142 child.indent = root.indent+n;
143 }
144 // If line has HB tag and start with HB tag and not comment
145 else if(root.tags.length > 0 && root.tags[0].position == 0 && !root.content.match(/^\/\/\-*.*/)) {
146 child.indent = root.indent;
147 }
148 else if(root.tags.length > 0 && root.tags[0].position != 0 && !root.content.match(/^\/\/\-*.*/)) {
149 child.indent = root.indent+n;
150 }
151 // If child has child, recursive call
152 if(child.child.length > 0)
153 jsonParser([child]);
154 });
155 });
156 return json;
157}
26export function parseJson(json) {
27 return JSON.parse(json, function (k, v) {
28 if (v.indexOf && v.indexOf('function') > -1) {
29 try {
30 return eval('(function(){return ' + v + ' })()')
31 } catch (e) {
32 console.error(`[form-create]解析失败:${v}`);
33 return undefined;
34 }
35 }
36 return v;
37 });
38}
111export function parseJson(json) {
112 return /** @type {?JsonObject} */ (JSON.parse(/** @type {string} */ (json)));
113}
77function parseIfJSON(val) {
78 if ((typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object') {
79 return val;
80 }
81
82 try {
83 return JSON.parse(val);
84 } catch (e) {
85 return val;
86 }
87}
11static parse(json: any) {
12 // should check against json schema
13}
4tryParseJSON(json) {
5 let parsed = json;
6 try {
7 parsed = JSON.parse(json);
8 } catch (e) {
9 }
10 return parsed
11}
33function getParsedJson (str) {
34 if (NOT_JSON_CACHE.indexOf(str) > -1) {
35 return str
36 }
37 try {
38 return JSON.parse(str)
39 } catch (error) {
40 NOT_JSON_CACHE.push(str)
41 return str
42 }
43}
24export function parse(jsonString: string) {
25 let ret = null;
26 try {
27 ret = JSON.parse(jsonString);
28 } catch (err) {
29 ChromeGA.error(err.message, 'ChromeJSON.parse');
30 }
31 return ret;
32}

Related snippets