(ch, helper)
| 792 | return /\w/.test(ch) || (ch > "\x80" && (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseAtomChar.test(ch))) |
| 793 | } |
| 794 | function isAtomChar(ch, helper) { |
| 795 | if (!helper) { |
| 796 | return isAtomCharBasic(ch) |
| 797 | } |
| 798 | if (helper.source.indexOf("\\w") > -1 && isAtomCharBasic(ch)) { |
| 799 | return true |
| 800 | } |
| 801 | return helper.test(ch) |
| 802 | } |
| 803 | |
| 804 | function isEmpty(obj) { |
| 805 | for (var n in obj) { |
no test coverage detected