Update index.js
Browse files
index.js
CHANGED
|
@@ -137,7 +137,7 @@ app.get("/", (req, res) => {
|
|
| 137 |
body: JSON.stringify({ startIP, endIP })
|
| 138 |
});
|
| 139 |
const results = await response.json();
|
| 140 |
-
document.getElementById('results').value = JSON.stringify(results, null,
|
| 141 |
});
|
| 142 |
|
| 143 |
document.getElementById('copyButton').addEventListener('click', () => {
|
|
|
|
| 137 |
body: JSON.stringify({ startIP, endIP })
|
| 138 |
});
|
| 139 |
const results = await response.json();
|
| 140 |
+
document.getElementById('results').value = JSON.stringify(results, null, 0);
|
| 141 |
});
|
| 142 |
|
| 143 |
document.getElementById('copyButton').addEventListener('click', () => {
|