fetch("./Data/normal.txt")
.then((r) => r.text())
.then((text) => {
console.log(
'["' +
text.replaceAll(" = ", '","').replaceAll("\n", '"],\n["') +
'"]'
)
})
fetch("./Data/normal.txt")
.then((r) => r.text())
.then((text) => {
console.log(
'["' +
text.replaceAll(" = ", '","').replaceAll("\n", '"],\n["') +
'"]'
)
})