(u)
| 3021 | }; |
| 3022 | var re_utob = /[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g; |
| 3023 | var utob = function (u) { |
| 3024 | return u.replace(re_utob, cb_utob); |
| 3025 | }; |
| 3026 | var cb_encode = function (ccc) { |
| 3027 | var padlen = [0, 2, 1][ccc.length % 3], |
| 3028 | ord = ccc.charCodeAt(0) << 16 |
no outgoing calls
no test coverage detected
searching dependent graphs…