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