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