(a, b, c)
| 16733 | |
| 16734 | // Pick the first defined of two or three arguments. |
| 16735 | function defaults(a, b, c) { |
| 16736 | if (a != null) { |
| 16737 | return a; |
| 16738 | } |
| 16739 | if (b != null) { |
| 16740 | return b; |
| 16741 | } |
| 16742 | return c; |
| 16743 | } |
| 16744 | |
| 16745 | function currentDateArray(config) { |
| 16746 | // hooks is actually the exported moment object |
no outgoing calls
no test coverage detected