(ch, helper)
| 270 | (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)) |
| 271 | } |
| 272 | function isWordChar(ch, helper) { |
| 273 | if (!helper) { return isWordCharBasic(ch) } |
| 274 | if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) { return true } |
| 275 | return helper.test(ch) |
| 276 | } |
| 277 | |
| 278 | function isEmpty(obj) { |
| 279 | for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } } |
no test coverage detected