in po.js on line 84 you parse the value of a header.
you do this via:
value = p.join(':').trim().replace(/n$/);
I wonder why you replace the final character if it is n without even supplying no replace character.
my: "Language: en\n" therefor ends up being Language: eundefined
what is the reason for replacing the final character if it is n, with nothing?
in po.js on line 84 you parse the value of a header.
you do this via:
I wonder why you replace the final character if it is
nwithout even supplying no replace character.my:
"Language: en\n"therefor ends up being Language: eundefinedwhat is the reason for replacing the final character if it is n, with nothing?