(a, b)
| 14775 | } |
| 14776 | |
| 14777 | function extend(a, b) { |
| 14778 | for (var i in b) { |
| 14779 | if (hasOwnProp(b, i)) { |
| 14780 | a[i] = b[i]; |
| 14781 | } |
| 14782 | } |
| 14783 | |
| 14784 | if (hasOwnProp(b, 'toString')) { |
| 14785 | a.toString = b.toString; |
| 14786 | } |
| 14787 | |
| 14788 | if (hasOwnProp(b, 'valueOf')) { |
| 14789 | a.valueOf = b.valueOf; |
| 14790 | } |
| 14791 | |
| 14792 | return a; |
| 14793 | } |
| 14794 | |
| 14795 | function createUTC (input, format, locale, strict) { |
| 14796 | return createLocalOrUTC(input, format, locale, strict, true).utc(); |
no test coverage detected