(str)
| 388 | } |
| 389 | |
| 390 | function decodeUnicode(str) { |
| 391 | return str.replace(/\\u([\d\w]{4})/gi, function (match, grp) { |
| 392 | return String.fromCharCode(parseInt(grp, 16)); |
| 393 | }); |
| 394 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…