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