projects
/
vchess.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Attempt to clarify installation instructions a little
[vchess.git]
/
client
/
src
/
utils
/
afterRawLoad.js
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
export default function afterRawLoad(text) {
2
return (
3
text
4
// Next two lines fix a weird issue after last update (2019-11)
5
.replace(/\\n/g, " ")
6
.replace(/\\"/g, '"')
7
.replace('export default "', "")
8
.replace(/";$/, "")
9
);
10
}