(input)
| 3754 | } |
| 3755 | |
| 3756 | function isNumberOrStringArray(input) { |
| 3757 | var arrayTest = isArray(input), |
| 3758 | dataTypeTest = false; |
| 3759 | if (arrayTest) { |
| 3760 | dataTypeTest = |
| 3761 | input.filter(function (item) { |
| 3762 | return !isNumber(item) && isString(input); |
| 3763 | }).length === 0; |
| 3764 | } |
| 3765 | return arrayTest && dataTypeTest; |
| 3766 | } |
| 3767 | |
| 3768 | function isCalendarSpec(input) { |
| 3769 | var objectTest = isObject(input) && !isObjectEmpty(input), |
no test coverage detected
searching dependent graphs…