How to use 'javascript map return object' in JavaScript

Every line of 'javascript map return object' 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
40function toObject(map) {
41 const object = {};
42 for (const attr in map) {
43 let value = map[attr];
44 if (value === 'true') {
45 value = true;
46 }
47 else if (value === 'false') {
48 value = false;
49 }
50 else if (value === 'null') {
51 value = null;
52 }
53 else if (String(Number(value)) === value) {
54 value = Number(value);
55 }
56 object[attr] = value;
57 }
58 return object;
59}

Related snippets