(obj)
| 43917 | ts.parsePackageName = parsePackageName; |
| 43918 | /* @internal */ |
| 43919 | function allKeysStartWithDot(obj) { |
| 43920 | return ts.every(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); }); |
| 43921 | } |
| 43922 | ts.allKeysStartWithDot = allKeysStartWithDot; |
| 43923 | function noKeyStartsWithDot(obj) { |
| 43924 | return !ts.some(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); }); |
no test coverage detected
searching dependent graphs…