(s: &[u8], i: usize)
| 104 | |
| 105 | #[inline] |
| 106 | fn is_word_at(s: &[u8], i: usize) -> bool { |
| 107 | i < s.len() && is_word(s[i]) |
| 108 | } |
| 109 | |
| 110 | /// Byte length of the JS `\s` character starting at `i`, or 0 when `s[i]` |
| 111 | /// doesn't start one. JS \s = [\t\n\v\f\r - |
no test coverage detected