(input)
| 3672 | } |
| 3673 | |
| 3674 | function isNumberOrStringArray(input) { |
| 3675 | var arrayTest = isArray(input), |
| 3676 | dataTypeTest = false; |
| 3677 | if (arrayTest) { |
| 3678 | dataTypeTest = |
| 3679 | input.filter(function (item) { |
| 3680 | return !isNumber(item) && isString(input); |
| 3681 | }).length === 0; |
| 3682 | } |
| 3683 | return arrayTest && dataTypeTest; |
| 3684 | } |
| 3685 | |
| 3686 | function isCalendarSpec(input) { |
| 3687 | var objectTest = isObject(input) && !isObjectEmpty(input), |
no test coverage detected