(a, b)
| 84 | } |
| 85 | |
| 86 | function extend(a, b) { |
| 87 | for (var i in b) { |
| 88 | if (hasOwnProp(b, i)) { |
| 89 | a[i] = b[i]; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | if (hasOwnProp(b, 'toString')) { |
| 94 | a.toString = b.toString; |
| 95 | } |
| 96 | |
| 97 | if (hasOwnProp(b, 'valueOf')) { |
| 98 | a.valueOf = b.valueOf; |
| 99 | } |
| 100 | |
| 101 | return a; |
| 102 | } |
| 103 | |
| 104 | function createUTC(input, format, locale, strict) { |
| 105 | return createLocalOrUTC(input, format, locale, strict, true).utc(); |
no test coverage detected