MCPcopy Index your code
hub / github.com/csev/py4e / defaults

Function defaults

code/gmane/Chart.bundle.js:2629–2637  ·  view source on GitHub ↗
(a, b, c)

Source from the content-addressed store, hash-verified

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();

Callers 2

configFromArrayFunction · 0.85
dayOfYearFromWeekInfoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected