(a, b, c)
| 2548 | |
| 2549 | // Pick the first defined of two or three arguments. |
| 2550 | function defaults(a, b, c) { |
| 2551 | if (a != null) { |
| 2552 | return a; |
| 2553 | } |
| 2554 | if (b != null) { |
| 2555 | return b; |
| 2556 | } |
| 2557 | return c; |
| 2558 | } |
| 2559 | |
| 2560 | function currentDateArray(config) { |
| 2561 | // hooks is actually the exported moment object |
no outgoing calls
no test coverage detected