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