(a, b, c)
| 2627 | |
| 2628 | // Pick the first defined of two or three arguments. |
| 2629 | function defaults(a, b, c) { |
| 2630 | if (a != null) { |
| 2631 | return a; |
| 2632 | } |
| 2633 | if (b != null) { |
| 2634 | return b; |
| 2635 | } |
| 2636 | return c; |
| 2637 | } |
| 2638 | |
| 2639 | function currentDateArray(config) { |
| 2640 | var now = new Date(); |
no outgoing calls
no test coverage detected