mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 10:22:23 -07:00
Correct stripNewline function
This commit is contained in:
Vendored
+1
-1
@@ -10,7 +10,7 @@ function getElement(name) {
|
||||
}
|
||||
|
||||
function stripNewline(str) {
|
||||
return str.replace(/\n$/, ' ')
|
||||
return str.replace(/\n/, ' ')
|
||||
}
|
||||
|
||||
class WasmMemoryInterface {
|
||||
|
||||
Reference in New Issue
Block a user