diff --git a/scratch b/scratch
deleted file mode 100644
index 7718dbd..0000000
--- a/scratch
+++ /dev/null
@@ -1,21 +0,0 @@
-
- formatJSONToHTML: function(jsonData) {
- let html = '
';
- for (const key in jsonData) {
- if (jsonData.hasOwnProperty(key)) {
- html += '- ';
- html += `${key} : `;
- if (typeof jsonData[key] === 'object') {
- // Recursively handle nested objects or arrays
- html += formatJSONToHTML(jsonData[key]);
- } else {
- // Display primitive values
- html += jsonData[key];
- }
- html += '
';
- }
- }
- html += '
';
- console.log("html: ", html)
- return html;
- },
\ No newline at end of file