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