(obj)
| 10715 | } |
| 10716 | |
| 10717 | function getFormatJSON(obj){ |
| 10718 | if(!objIsArr(obj) || obj.length === 0)return ""; |
| 10719 | return JSON.stringify(obj, null, 4); |
| 10720 | } |
| 10721 | |
| 10722 | function globMatch(first, second) { |
| 10723 | if (first === '*') { |
no test coverage detected