(j)
| 47 | let idx = len - 1; |
| 48 | |
| 49 | const tailIsPct3D = (j) => |
| 50 | j >= 2 && |
| 51 | body.charCodeAt(j - 2) === 37 && // '%' |
| 52 | body.charCodeAt(j - 1) === 51 && // '3' |
| 53 | (body.charCodeAt(j) === 68 || body.charCodeAt(j) === 100); // 'D' or 'd' |
| 54 | |
| 55 | if (idx >= 0) { |
| 56 | if (body.charCodeAt(idx) === 61 /* '=' */) { |
no outgoing calls
no test coverage detected