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

Function extend

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

Source from the content-addressed store, hash-verified

1639 }
1640
1641 function extend(a, b) {
1642 for (var i in b) {
1643 if (hasOwnProp(b, i)) {
1644 a[i] = b[i];
1645 }
1646 }
1647
1648 if (hasOwnProp(b, 'toString')) {
1649 a.toString = b.toString;
1650 }
1651
1652 if (hasOwnProp(b, 'valueOf')) {
1653 a.valueOf = b.valueOf;
1654 }
1655
1656 return a;
1657 }
1658
1659 function create_utc__createUTC (input, format, locale, strict) {
1660 return createLocalOrUTC(input, format, locale, strict, true).utc();

Callers 4

valid__createInvalidFunction · 0.70
deprecateFunction · 0.70
configFromStringAndArrayFunction · 0.70
parsingFlagsFunction · 0.70

Calls 1

hasOwnPropFunction · 0.85

Tested by

no test coverage detected