(a, b)
| 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(); |
no test coverage detected