mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
function exports(str)
|
|
{
|
|
return str.replace(/\\/g, '\\\\')
|
|
.replace(/"/g, '\\"')
|
|
.replace(/\f|\n|\r|\t/g, '');
|
|
}
|