(ch, helper)
| 8382 | (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)); |
| 8383 | }; |
| 8384 | function isWordChar(ch, helper) { |
| 8385 | if (!helper) return isWordCharBasic(ch); |
| 8386 | if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) return true; |
| 8387 | return helper.test(ch); |
| 8388 | } |
| 8389 | |
| 8390 | function isEmpty(obj) { |
| 8391 | for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false; |
no test coverage detected